Internal
problem
ID
[6334]
Book
:
Fundamentals
of
Differential
Equations.
By
Nagle,
Saff
and
Snider.
9th
edition.
Boston.
Pearson
2018.
Section
:
Chapter
2,
First
order
differential
equations.
Section
2.4,
Exact
equations.
Exercises.
page
64
Problem
number
:
14
Date
solved
:
Sunday, March 30, 2025 at 10:51:57 AM
CAS
classification
:
[_separable]
ode:=t/y(t)*diff(y(t),t)+1+ln(y(t)) = 0; dsolve(ode,y(t), singsol=all);
ode=(t/y[t])*D[y[t],t]+(1+Log[y[t]])==0; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(t*Derivative(y(t), t)/y(t) + log(y(t)) + 1,0) ics = {} dsolve(ode,func=y(t),ics=ics)