Internal
problem
ID
[7230]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
8,
Ordinary
differential
equations.
Section
2.
Separable
equations.
page
398
Problem
number
:
3
Date
solved
:
Friday, October 03, 2025 at 02:11:26 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=sin(x)*diff(y(x),x) = ln(y(x))*y(x); ic:=[y(1/3*Pi) = exp(1)]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=D[y[x],x]*Sin[x]==y[x]*Log[y[x]]; ic={y[Pi/3]==Exp[1]}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x)*log(y(x)) + sin(x)*Derivative(y(x), x),0) ics = {y(pi/3): E} dsolve(ode,func=y(x),ics=ics)