2.101 ODE No. 101
- Problem in Latex
- Mathematica input
- Maple input
✓ Mathematica : cpu = 0.0719045 (sec), leaf count = 18
✓ Maple : cpu = 0.01 (sec), leaf count = 16
This is of the form with . Since this is Bernoulli differential equation. We always start by dividing
by Then or , therefore . Equating this to RHS of (1) gives
Integrating factor is and the above becomes Integrating
Hence
Verification
restart;
ode:=x*diff(y(x),x)+x*y(x)^2-y=0;
my_solution:=2*x/(x^2+2*_C1);
odetest(y(x)=my_solution,ode);
0