Internal
problem
ID
[6867]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
4
Problem
number
:
4
Date
solved
:
Tuesday, September 30, 2025 at 03:58:48 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, [_Abel, `2nd type`, `class A`]]
ode:=1/x+1/y(x)*diff(y(x),x)+2/y(x)-2/x*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=1/x+1/y[x]*D[y[x],x]+2*(1/y[x]-1/x*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(Derivative(y(x), x)/y(x) + 2/y(x) - 2*Derivative(y(x), x)/x + 1/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)