Internal
problem
ID
[13802]
Book
:
Differential
equations
and
the
calculus
of
variations
by
L.
ElSGOLTS.
MIR
PUBLISHERS,
MOSCOW,
Third
printing
1977.
Section
:
Chapter
1,
First-Order
Differential
Equations.
Problems
page
88
Problem
number
:
Problem
48
Date
solved
:
Wednesday, March 05, 2025 at 10:17:33 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _Clairaut]
With initial conditions
ode:=y(x) = x*diff(y(x),x)+diff(y(x),x)^2; ic:=y(1) = -1; dsolve([ode,ic],y(x), singsol=all);
ode=y[x]==x*D[y[x],x]+D[y[x],x]^2; ic={y[1]==-1}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x*Derivative(y(x), x) + y(x) - Derivative(y(x), x)**2,0) ics = {y(1): -1} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : Initial conditions produced too many solutions for constants