Internal
problem
ID
[8747]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
36
Date
solved
:
Sunday, March 30, 2025 at 01:29:53 PM
CAS
classification
:
[_Clairaut]
Time used: 0.067 (sec)
Solve
This is Clairaut ODE. It has the form
Where
Solving for
The above ode is a Clairaut ode which is now solved.
We start by replacing
Writing the ode as
We now write
Then we see that
Taking derivative of (1) w.r.t.
Where
The general solution is given by
Substituting this in (1) gives the general solution as
The singular solution is found from solving for
And substituting the result back in (1). Since we found above that
Unable to solve for
Which simplifies to
Summary of solutions found
ode:=diff(f(x),x)*x-f(x) = diff(f(x),x)^2/lambda^2*(1-diff(f(x),x)^lambda)^2; dsolve(ode,f(x), singsol=all);
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
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]
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)