2.90 ODE No. 90
- Problem in Latex
- Mathematica input
- Maple input
✓ Mathematica : cpu = 0.012451 (sec), leaf count = 24
✓ Maple : cpu = 0.011 (sec), leaf count = 17
Linear first order, exact, separable. , integrating factor , hence
Using integration by parts. . Let , hence , therefore
Hence
Verification
restart;
ode:=x*diff(y(x),x)+y(x)=x*sin(x);
my_sol:=sin(x)/x-cos(x)+_C1/x;
odetest(y(x)=my_sol,ode);
0