Internal
problem
ID
[16631]
Book
:
A
book
of
problems
in
ordinary
differential
equations.
M.L.
KRASNOV,
A.L.
KISELYOV,
G.I.
MARKARENKO.
MIR,
MOSCOW.
1983
Section
:
Section
4.
Equations
with
variables
separable
and
equations
reducible
to
them.
Exercises
page
38
Problem
number
:
53
Date
solved
:
Thursday, March 13, 2025 at 08:27:55 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=y(x)*ln(y(x))+x*diff(y(x),x) = 1; ic:=y(1) = 1; dsolve([ode,ic],y(x), singsol=all);
ode=y[x]*Log[y[x]]+x*D[y[x],x]==1; ic={y[1]==1}; 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)*log(y(x)) - 1,0) ics = {y(1): 1} dsolve(ode,func=y(x),ics=ics)