2.1.35 Problem 36
Internal
problem
ID
[10021]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
36
Date
solved
:
Thursday, November 27, 2025 at 10:05:27 AM
CAS
classification
:
[_Clairaut]
Solved using first_order_ode_clairaut
Time used: 0.062 (sec)
Solve
\begin{align*}
x f^{\prime }-f&=\frac {{f^{\prime }}^{2} \left (1-{f^{\prime }}^{\lambda }\right )^{2}}{\lambda ^{2}} \\
\end{align*}
This is Clairaut ODE. It has the form
\[
f=x f^{\prime }+g\left (f^{\prime }\right )
\]
Where
\(g\) is function of
\(f'(x)\). Let
\(p=f^{\prime }\) the ode becomes
\begin{align*} x p -f = \frac {p^{2} \left (1-p^{\lambda }\right )^{2}}{\lambda ^{2}} \end{align*}
Solving for \(f\) from the above results in
\begin{align*} f &= -\frac {p \left (p^{2 \lambda } p -x \,\lambda ^{2}-2 p^{\lambda } p +p \right )}{\lambda ^{2}}\tag {1A} \end{align*}
The above ode is a Clairaut ode which is now solved.
Writing the equation (1A) as
\begin{align*} f&= x p +g \left (p \right ) \end{align*}
We now write \(g\equiv g\left ( p\right ) \) to make notation simpler but we should always remember that \(g\) is function of \(p\)
which in turn is function of \(x\). Hence the above becomes
\begin{align*} f = x p +g\tag {1} \end{align*}
Where
\begin{align*} g&=-\frac {p^{2} \left (p^{2 \lambda }-2 p^{\lambda }+1\right )}{\lambda ^{2}} \end{align*}
Taking derivative of (1) w.r.t. \(x\) gives
\begin{align*} p &=\frac {d}{dx}\left (x p+g\right ) \\ p & =\left ( p+x\frac {dp}{dx}\right ) +\left ( g' \frac {dp}{dx}\right ) \\ p & =p+\left ( x+g'\right ) \frac {dp}{dx}\\ 0 & =\left ( x+g'\right ) \frac {dp}{dx} \end{align*}
Where \(g'\) is derivative of \(g\left ( p\right ) \) w.r.t. \(p\).
The general solution is given by
\begin{align*} \frac {dp}{dx} & =0\\ p &=c_{1} \end{align*}
Substituting this in (1) gives the general solution as
\begin{align*} f = c_1 x -\frac {c_1^{2} \left (c_1^{2 \lambda }-2 c_1^{\lambda }+1\right )}{\lambda ^{2}} \end{align*}
The singular solution is found from solving for \(p\) from
\begin{align*} x+g'\left ( p\right ) &=0 \end{align*}
And substituting the result back in (1). Since we found above that \(g=-\frac {p^{2} \left (p^{2 \lambda }-2 p^{\lambda }+1\right )}{\lambda ^{2}}\), then the above equation
becomes
\begin{align*} x+g'\left ( p\right ) &= x -\frac {2 p \left (p^{2 \lambda }-2 p^{\lambda }+1\right )}{\lambda ^{2}}-\frac {p^{2} \left (\frac {2 p^{2 \lambda } \lambda }{p}-\frac {2 p^{\lambda } \lambda }{p}\right )}{\lambda ^{2}}\\ &= 0 \end{align*}
Unable to solve for \(p\). No singular solutions can be found.
Simplifying the above gives
\begin{align*}
f &= c_1 x +\frac {c_1^{2} \left (-c_1^{2 \lambda }+2 c_1^{\lambda }-1\right )}{\lambda ^{2}} \\
\end{align*}
Summary of solutions found
\begin{align*}
f &= c_1 x +\frac {c_1^{2} \left (-c_1^{2 \lambda }+2 c_1^{\lambda }-1\right )}{\lambda ^{2}} \\
\end{align*}
✓ Maple. Time used: 0.207 (sec). Leaf size: 318
ode:=x*diff(f(x),x)-f(x) = diff(f(x),x)^2/lambda^2*(1-diff(f(x),x)^lambda)^2;
dsolve(ode,f(x), singsol=all);
\begin{align*} \text {Solution too large to show}\end{align*}
Maple trace
Methods for first order ODEs:
-> Solving 1st order ODE of high degree, 1st attempt
trying 1st order WeierstrassP solution for high degree ODE
trying 1st order WeierstrassPPrime solution for high degree ODE
trying 1st order JacobiSN solution for high degree ODE
trying 1st order ODE linearizable_by_differentiation
trying differential order: 1; missing variables
trying dAlembert
<- 1st order, parametric methods successful
<- dAlembert successful
Maple step by step
\[ \begin {array}{lll} & {} & \textrm {Let's solve}\hspace {3pt} \\ {} & {} & x \left (\frac {d}{d x}f \left (x \right )\right )-f \left (x \right )=\frac {\left (\frac {d}{d x}f \left (x \right )\right )^{2} \left (1-\left (\frac {d}{d x}f \left (x \right )\right )^{\lambda }\right )^{2}}{\lambda ^{2}} \\ \bullet & {} & \textrm {Highest derivative means the order of the ODE is}\hspace {3pt} 1 \\ {} & {} & \frac {d}{d x}f \left (x \right ) \\ \bullet & {} & \textrm {Solve for the highest derivative}\hspace {3pt} \\ {} & {} & \frac {d}{d x}f \left (x \right )=\mathit {RootOf}\left (\left (\textit {\_Z}^{\lambda }\right )^{2} \textit {\_Z}^{2}-x \textit {\_Z} \,\lambda ^{2}+f \left (x \right ) \lambda ^{2}-2 \textit {\_Z}^{\lambda } \textit {\_Z}^{2}+\textit {\_Z}^{2}\right ) \end {array} \]
✓ Mathematica. Time used: 9.23 (sec). Leaf size: 30
ode=x*D[ f[x],x]-f[x]==D[ f[x],x]^2/\[Lambda]^2*(1-D[ f[x],x]^\[Lambda])^2;
ic={};
DSolve[{ode,ic},f[x],x,IncludeSingularSolutions->True]
\begin{align*} f(x)&\to c_1 \left (x-\frac {c_1 \left (-1+c_1{}^{\lambda }\right ){}^2}{\lambda ^2}\right )\\ f(x)&\to 0 \end{align*}
✗ Sympy
from sympy import *
x = symbols("x")
lambda_ = symbols("lambda_")
f = Function("f")
ode = Eq(x*Derivative(f(x), x) - f(x) - (1 - Derivative(f(x), x)**lambda_)**2*Derivative(f(x), x)**2/lambda_**2,0)
ics = {}
dsolve(ode,func=f(x),ics=ics)
NotImplementedError : multiple generators [_X0, _X0**lambda_]
No algorithms are implemented to solve equation -_X0**2*_X0**(2*lambda_) + 2*_X0**2*_X0**lambda_ - _X0**2 + _X0*lambda_**2*x - lambda_**2*f(x)