
sympy - issue #4078
laplace_transform(Sum((-1)**n*Heaviside(t - n*a), (n, 1, oo)), t, s) not calculated
t = symbols('t', real=True, positive=True) a = symbols('a', real=True) s = symbols('s') laplace_transform(1 + 2*Sum((-1)**n*Heaviside(t - n*a), (n, 1, oo)), t, s)
returns: (2*LaplaceTransform(Sum((-1)**n*Heaviside(-a*n + t), (n, 1, oo)), t, s) + 1/s, 0, True)
Expected result should be: 1/s + 2*Sum( (-1)**n*exp(-s*n*a)/s, (n, 1, oo))
Comment #1
Posted on Nov 5, 2013 by Happy ElephantSo it just commutes with the sum?
Comment #2
Posted on Mar 5, 2014 by Happy ElephantWe have moved issues to GitHub https://github.com/sympy/sympy/issues.
Comment #3
Posted on Apr 6, 2014 by Happy RabbitMigrated to http://github.com/sympy/sympy/issues/7177
Status: New
Labels:
Type-Defect
Priority-Medium
Restrict-AddIssueComment-Commit