Internal
problem
ID
[17915]
Book
:
V.V.
Stepanov,
A
course
of
differential
equations
(in
Russian),
GIFML.
Moscow
(1958)
Section
:
All
content
Problem
number
:
123
(page
179)
Date
solved
:
Monday, March 31, 2025 at 04:51:20 PM
CAS
classification
:
[[_2nd_order, _missing_y], [_2nd_order, _reducible, _mu_y_y1]]
ode:=a^2*diff(diff(y(x),x),x) = 2*x*(1+diff(y(x),x)^2)^(1/2); dsolve(ode,y(x), singsol=all);
ode=a^2*D[y[x],{x,2}]==2*x*Sqrt[1+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**2*Derivative(y(x), (x, 2)) - 2*x*sqrt(Derivative(y(x), x)**2 + 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out