2.29 ODE No. 29
- Problem in Latex
- Mathematica input
- Maple input
✓ Mathematica : cpu = 0.0239502 (sec), leaf count = 39
✓ Maple : cpu = 0.015 (sec), leaf count = 19
This is Bernoulli first order non-linear ODE since . To solve Bernoulli we always start by dividing
by Then we let , hence , therefore the above becomes
Integrating factor is , hence Integrating both sides gives
Hence from above
And since then Verification
eq:=diff(y(x),x)-x*y(x)^2-3*x*y(x) = 0;
sol:=exp(3*x^2/2)/(_C1- 1/3*exp(3*x^2/2));
odetest(y(x)=sol,eq);
0