Question: How do I input multiple solutions to an equation when using dsolve?

Hello!

I am trying to solve the differential equation:

diff(x(t),t$2) + 3*diff(x(t),t) + 11*x(t) = g(t)

for g(t) = (t^2)*sin(t)x(0) = 0 and x(0) = 1

How do I input that x(0) = both 1 and 0?

So far I have:

dsolve({diff(x(t),t$2) + 3*diff(x(t),t) + 11*x(t) = (t^2)*sin(t),x(0)=0,x(0)=1},x(t))

Thanks for reading, any ideas appreciated!

Please Wait...