Internal
problem
ID
[10076]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
63
Date
solved
:
Wednesday, March 05, 2025 at 08:23:16 AM
CAS
classification
:
[_separable]
ode:=diff(y(x),x)-(1+y(x)^2)/abs(y(x)+(1+y(x))^(1/2))/(1+x)^(3/2) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] - (1+ y[x]^2)/(Abs[y[x]+Sqrt[1+y[x]]]*Sqrt[1+x]^3)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - (y(x)**2 + 1)/((x + 1)**(3/2)*Abs(sqrt(y(x) + 1) + y(x))),0) ics = {} dsolve(ode,func=y(x),ics=ics)