Internal
problem
ID
[19842]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
IV.
Methods
of
solution:
First
order
equations.
section
31.
Problems
at
page
85
Problem
number
:
5
Date
solved
:
Thursday, October 02, 2025 at 04:48:11 PM
CAS
classification
:
[_Bernoulli]
ode:=(T(t)*ln(t)-1)*T(t) = t*diff(T(t),t); dsolve(ode,T(t), singsol=all);
ode=(T[t]*Log[t]-1)*T[t]==t*D[T[t],t]; ic={}; DSolve[{ode,ic},T[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") T = Function("T") ode = Eq(-t*Derivative(T(t), t) + (T(t)*log(t) - 1)*T(t),0) ics = {} dsolve(ode,func=T(t),ics=ics)