Comment #3 on issue 1428 by [email protected]: wrong result for integral of sin(k*x)*sin(m*x) over [0,pi]
http://code.google.com/p/sympy/issues/detail?id=1428
I cannot reproduce your results, asmeurer. The expression`integrate(sin(k*x)*sin(m*x),(x,0,pi))` does not yield the correct answer when the integers `m` and `k` are utilized:
In [9]: integrate(sin(k*x)*sin(m*x),(x,0,pi)) Out[9]: 0 In [10]: integrate(sin(k*x)*sin(k*x),(x,0,pi)) Out[10]: π ─ 2 -- You received this message because you are subscribed to the Google Groups "sympy-issues" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/sympy-issues?hl=en.
