Solving ODE
I am trying to solve the following ODE;
mx''(t) + cx'(t) + kx(t) = f(t) I already defined my function beforehand.
for x(t)=0 and x'(t)=0
Then I am trying to form the solve block by Given,
But, after I write Given, x''(t) seems still red, undefined.
Given
mx''(t) + cx'(t) + kx(t) = f(t) %%Should x''(t) be red here?
x(t)=0
x'(t)=0
x:= Odesolve(t,5)
what is wrong?
Thanks in advance..

