2.104 ODE No. 104
- Problem in Latex
- Mathematica input
- Maple input
✓ Mathematica : cpu = 0.111434 (sec), leaf count = 43
✓ Maple : cpu = 0.046 (sec), leaf count = 63
This is Riccati non-linear first order. Converting it to standard form
Using transformation suggested by Kamke then . Equating this to RHS of (1) gives
Hence
This is separable
Integrating
Hence
Verification
restart;
ode:=x*diff(y(x),x)+a*x*y(x)^2+2*y(x)+b*x = 0;
my_solution:=sqrt(b*a)/a*tan(-sqrt(b*a)*x+_C1)-1/(a*x);
odetest(y(x)=my_solution,ode);
0