2.109 ODE No. 109
- Problem in Latex
- Mathematica input
- Maple input
✓ Mathematica : cpu = 0.0693812 (sec), leaf count = 17
✓ Maple : cpu = 0.012 (sec), leaf count = 15
This is Riccati non-linear first order. Converting it to standard form
This is Bernoulli non-linear first order ODE since . Dividing by gives Putting , hence , and the
above becomes
Integrating factor is , hence
Integrating
Therefore
Since then Verification
restart;
ode:=x*diff(y(x),x)-y(x)*(2*y(x)*ln(x)-1)=0;
my_solution:=1/(2*(ln(x)+1)+_C1*x);
odetest(y(x)=my_solution,ode);
0