Question: y(t) and y cannot both appear in the given ODE.

I'm trying to find y as a function of x in an equation. Here's the outline of my method: Suppose I have the following ode: ode := x^2*(diff(y(t), t, t))-3*x*(diff(y(t), t))+2*y = x^2 IC := y(0) = 7, (D(y))(1) = 2 dsolve({ode, IC}, y(t)) But I get the following: Error, (in ODEtools/info) y(t) and y cannot both appear in the given ODE. I'm not sure about what I'm doing wrong here in the syntax? Any hint would be appreciated. Thanks.
Please Wait...