When a given ode can be solved using a number of different methods, we need to decide which is the best method to use. In general, it is best to avoid having to solve for the derivative. In other words, for ode’s which are first order and non-linear in \(y^{\prime }\) to make progress, we have to first solve for the derivative. But it is also possible to solve the ode as is without solving for the derivative. Here is an example. Given this ode
This is non-linear in the derivative. Lets solve this as separable and then as dAlembert. As separable, we have to first solve for \(y^{\prime }\) which gives
Taking exponential of both sides gives
Which is now separable. Integrating gives
This solution as it stands could not be verified by Maple as valid solution to the ode unless we assume that \(e^{\frac {-x}{3}}-\frac {c}{3}>0\) and also assuming \(x>0\). Only then Maple odetest verifies the solution as valid. Now lets see what happens if we solve the same ode above as dAlembert using original form as is. Eq. (1) is
Where \(p=y^{\prime }\). Comparing to dAlembert for \(y=xf+g\) shows that \(f=1,g=3\ln \left ( p\right ) \). Taking derivative of the above w.r.t. \(x\) gives
But \(f=1,g=3\ln p\), hence \(f^{\prime }\left ( p\right ) =0,g^{\prime }\left ( p\right ) =\frac {3}{p}\). The above becomes
Singular solution when \(\frac {dp}{dx}=0\) which gives \(p=1\). Hence (3) becomes \(y=x\). This is the singular solution. General solution is when \(\frac {dp}{dx}\neq 0\) in (4). This gives the ode
Which is quadrature. Solving for \(p\) gives
Substituting this into (3) gives
This solution was verified as is in Maple with no assumptions. We see now the difference in the solution solutions
The difference is that for verification, the separable solution requires giving assumptions while the dAlembert does not. In this case, the dAlembert is preferable.