Internal
problem
ID
[17878]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
78
(page
120)
Date
solved
:
Monday, March 31, 2025 at 04:44:10 PM
CAS
classification
:
[_dAlembert]
ode:=x = y(x)*diff(y(x),x)+a*diff(y(x),x)^2; dsolve(ode,y(x), singsol=all);
ode=x==D[y[x],x]*y[x]+a*D[y[x],x]^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-a*Derivative(y(x), x)**2 + x - y(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out