Internal
problem
ID
[16714]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Section
6.
Linear
equations
of
the
first
order.
The
Bernoulli
equation.
Exercises
page
54
Problem
number
:
162
Date
solved
:
Monday, March 31, 2025 at 03:07:20 PM
CAS
classification
:
[_Bernoulli]
ode:=2*diff(y(x),x)*ln(x)+y(x)/x = cos(x)/y(x); dsolve(ode,y(x), singsol=all);
ode=2*D[y[x],x]*Log[x]+y[x]/x==Cos[x]/y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(2*log(x)*Derivative(y(x), x) - cos(x)/y(x) + y(x)/x,0) ics = {} dsolve(ode,func=y(x),ics=ics)