Internal
problem
ID
[15061]
Book
:
Ordinary
Differential
Equations.
An
introduction
to
the
fundamentals.
Kenneth
B.
Howell.
second
edition.
CRC
Press.
FL,
USA.
2020
Section
:
Chapter
7.
The
exact
form
and
general
integrating
fators.
Additional
exercises.
page
141
Problem
number
:
7.2
Date
solved
:
Thursday, March 13, 2025 at 05:33:36 AM
CAS
classification
:
[[_homogeneous, `class G`], _rational, _Bernoulli]
ode:=diff(y(x),x) = 1/y(x)-1/2*y(x)/x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==1/y[x]-y[x]/(2*x); ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) - 1/y(x) + y(x)/(2*x),0) ics = {} dsolve(ode,func=y(x),ics=ics)