4.3 See all steps solving differential equation
For differential equations, support is limited to simple ones like ones encounters in lower
level college courses. These are the steps
restart;
ode:=diff(y(x),x)=sin(x);
Student:-ODEs:-ODESteps(ode)
Gives
If initial/boundary conditions are present then the command is
restart;
ode:=diff(y(x),x)=sin(x);
ic:=y(0)=1;
Student:-ODEs:-ODESteps([ode,ic])