Internal
problem
ID
[10584]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
586
Date
solved
:
Friday, March 14, 2025 at 02:13:44 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(y)]`]]
ode:=diff(y(x),x) = F(y(x)/(x^2+1)^(1/2))*x/(x^2+1)^(1/2); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (x*F[y[x]/Sqrt[1 + x^2]])/Sqrt[1 + x^2]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") F = Function("F") ode = Eq(-x*F(y(x)/sqrt(x**2 + 1))/sqrt(x**2 + 1) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out