Internal
problem
ID
[1242]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
10th
ed.,
Boyce
and
DiPrima
Section
:
Miscellaneous
problems,
end
of
chapter
2.
Page
133
Problem
number
:
25
Date
solved
:
Saturday, March 29, 2025 at 10:49:44 PM
CAS
classification
:
[_exact, _rational]
ode:=2*x/y(x)-y(x)/(x^2+y(x)^2)+(-x^2/y(x)^2+x/(x^2+y(x)^2))*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=2*x/y[x]-y[x]/(x^2+y[x]^2)+(-x^2/y[x]^2+x/(x^2+y[x]^2))*D[y[x],x] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(2*x/y(x) + (-x**2/y(x)**2 + x/(x**2 + y(x)**2))*Derivative(y(x), x) - y(x)/(x**2 + y(x)**2),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out