Internal
problem
ID
[17840]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
46
(page
56)
Date
solved
:
Friday, March 14, 2025 at 04:49:36 AM
CAS
classification
:
[`y=_G(x,y')`]
ode:=(y(x)-x)*(x^2+1)^(1/2)*diff(y(x),x) = (1+y(x)^2)^(3/2); dsolve(ode,y(x), singsol=all);
ode=(y[x]-x)*Sqrt[1+x^2]*D[y[x],x]==(1+y[x]^2)^(3/2); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-x + y(x))*sqrt(x**2 + 1)*Derivative(y(x), x) - (y(x)**2 + 1)**(3/2),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out