2.32 ODE No. 32
- Problem in Latex
- Mathematica input
- Maple input
✓ Mathematica : cpu = 0.299935 (sec), leaf count = 34
✓ Maple : cpu = 0.239 (sec), leaf count = 28
This is Ricatti first order non-linear ODE. . A particular solution is , therefore the solution
is
Hence Equating this to RHS of (1) gives
Hence
Or
Integrating factor is . Hence the above becomes Integrating both sides
Hence Therefore
Let Verification
restart;
ode:=diff(y(x),x)+y(x)^2*sin(x)-2*sin(x)/cos(x)^2 = 0;
my_sol:=1/cos(x)+ 3*cos(x)^2/(_C1-cos(x)^3);
odetest(y(x)=my_sol,ode);
0