Internal
problem
ID
[10033]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
1.0
Problem
number
:
36
Date
solved
:
Tuesday, September 30, 2025 at 06:47:29 PM
CAS
classification
:
[_Clairaut]
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);
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)