2.44 ODE No. 44
- Problem in Latex
- Mathematica input
- Maple input
✓ Mathematica : cpu = 0.0725068 (sec), leaf count = 72
✓ Maple : cpu = 0.017 (sec), leaf count = 53
This is of the form where . Hence this is Bernoulli first order non-linear ODE. We start by diving
by Let , hence and the above becomes
Integrating factor is hence Integrating
Therefore Hence Or Verification
ode:=2*a*x^3*y(x)^3+diff(y(x),x)+2*x*y(x)=0;
my_sol:=sqrt(2)/sqrt(-a*(2*x^2+1)+_C1*exp(2*x^2));
odetest(y(x)=my_sol,ode);
0
my_sol:=-sqrt(2)/sqrt(-a*(2*x^2+1)+_C1*exp(2*x^2));
odetest(y(x)=my_sol,ode);
0