Export to GitHub

sympy - issue #4078

laplace_transform(Sum((-1)**n*Heaviside(t - n*a), (n, 1, oo)), t, s) not calculated


Posted on Oct 28, 2013 by Grumpy Panda

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 Elephant

So it just commutes with the sum?

Comment #2

Posted on Mar 5, 2014 by Happy Elephant

We have moved issues to GitHub https://github.com/sympy/sympy/issues.

Comment #3

Posted on Apr 6, 2014 by Happy Rabbit

Migrated to http://github.com/sympy/sympy/issues/7177

Status: New

Labels:
Type-Defect Priority-Medium Restrict-AddIssueComment-Commit