Internal
problem
ID
[5725]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
3
Problem
number
:
4
Date
solved
:
Sunday, March 30, 2025 at 10:06:16 AM
CAS
classification
:
[[_1st_order, _with_linear_symmetries], _exact, _rational]
ode:=x+y(x)*diff(y(x),x)+x/(x^2+y(x)^2)*diff(y(x),x)-y(x)/(x^2+y(x)^2) = 0; dsolve(ode,y(x), singsol=all);
ode=x+y[x]*D[y[x],x]+x/(x^2+y[x]^2)*D[y[x],x]- y[x]/(x^2+y[x]^2)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x + x*Derivative(y(x), x)/(x**2 + y(x)**2) + y(x)*Derivative(y(x), x) - y(x)/(x**2 + y(x)**2),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out