Internal
problem
ID
[22043]
Book
:
Differential
Equations
By
Kaj
L.
Nielsen.
Second
edition
1966.
Barnes
and
nobel.
66-28306
Section
:
Examination
I.
page
253
Problem
number
:
1
(b)
Date
solved
:
Thursday, October 02, 2025 at 08:22:42 PM
CAS
classification
:
[[_homogeneous, `class D`], _exact, _rational, [_Abel, `2nd type`, `class A`]]
ode:=2*x+1/y(x)+(1/y(x)-x/y(x)^2)*diff(y(x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=(2*x+1/y[x])+(1/y[x]-x/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 + (-x/y(x)**2 + 1/y(x))*Derivative(y(x), x) + 1/y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out