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