Hello!
I got a trouble to get the answer of following
exponential function with summation.
I expect that the answer should be "Heaviside" forms.
However, the maple software does not go further.
restart;
assume(i::posint,n::posint,s::complex);
eq1:=sum((-1)^i*exp(-s*T[i])/s,i = 1..n);
inttrans[invlaplace](eq1,s,t) assuming T[i]>0,T[i+1]>T[i];
I am a novice for maple. Is there any procedure routine?
Please tell me about it.
Thanks.
Y-G Sung
sungyg@chosun.ac.kr
Comments
unidentified constants
Maple can't solve your eq1, unless you tell it the values of the constants T[1] .. T[n].
Hope this helps.
J. Tarr
A workaround
A workaround is
applyop(inttrans[invlaplace],1,eq1,s,t) assuming T[i]>0;![sum((-1)^i*Heaviside(t-T[i]),i = 1 .. n)](http://mapleoracles.maplesoft.com:8080/maplenet/primes/f30e0998646b1f4ba1beb5dc8d2bcd38.gif)
The assume command after the restart command in your code is not necessary.