Internal
problem
ID
[10275]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
266
Date
solved
:
Thursday, March 13, 2025 at 07:33:21 PM
CAS
classification
:
[`x=_G(y,y')`]
ode:=(y(x)-x)*(x^2+1)^(1/2)*diff(y(x),x)-a*((1+y(x)^2)^3)^(1/2) = 0; dsolve(ode,y(x), singsol=all);
ode=(y[x]-x)*Sqrt[x^2+1]*D[y[x],x]-a*Sqrt[(y[x]^2+1)^3]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-a*sqrt((y(x)**2 + 1)**3) + (-x + y(x))*sqrt(x**2 + 1)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out