Thank you for your answer. Sorry, that i reply that late.
Now, I was working and trying the new command DSolve and I think,now I understand it. So i was trying something new. I have to solve this monster: x1''[t]+gx1'[t]+a*x1=sum(i=2)^N bixi,x).
xi[t] are different time series. For example x1=[1,2,3,4,...,n], x2=[4,6,3,5,6,....,n] and so on. I have N time series and at the left side of the equation there is only time series x1. On the other side i want to have something like that: b2x2+b3x3+... and so on. So the equation have the character as described in the top.
I tried it in Mathematica: Input: DSolve[{a x[t] + g x'[t] + x''[t] == Sum_ (i = 0)^infinity bi*xi}, x[t], t] but the program replied with
"The function x appears with no arguments.
Outpu: DSolve[{a x[t] + g Derivative[1][x][t] + (x^[Prime][Prime])[t] == 0^infinity (b : Blank[0]) Sum_ (x : Blank[0])}, x[t], t]"
So i think that something went wrong with the sum. How can I solve this problem?
Thanks at all!
Regards,Julia