2.92 ODE No. 92
- Problem in Latex
- Mathematica input
- Maple input
✓ Mathematica : cpu = 0.0237564 (sec), leaf count = 15
✓ Maple : cpu = 0.006 (sec), leaf count = 12
Linear first order, exact, separable. , integrating factor , hence
Verification
restart;
ode:=x*diff(y(x),x)-y(x)=x^2*sin(x);
my_sol:=x*(_C1-cos(x));
odetest(y(x)=my_sol,ode);
0