Series Solution Take-Home Number 3
With and Without Initial Conditions
Below are examples with type = series and unspecified type.
> | ode:=(1+x^2)*diff(y(x),x,x)-4*x*diff(y(x),x)+6*y(x)=0; |
> | dsolve({ode},y(x),type=series); |
> | dsolve({ode,y(0)=1,D(y)(0)=2},y(x),type=series); |
> | dsolve({ode},y(x)); |
> | dsolve({ode,y(0)=1,D(y)(0)=2},y(x)); |
> |