Internal
problem
ID
[22676]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
two.
First
order
and
simple
higher
order
ordinary
differential
equations.
A
Exercises
at
page
65
Problem
number
:
53
Date
solved
:
Thursday, October 02, 2025 at 09:06:13 PM
CAS
classification
:
[_separable]
ode:=diff(r(t),t) = r(t)*(1+ln(t))/t/(1+ln(r(t))); dsolve(ode,r(t), singsol=all);
ode=D[r[t],t]== (r[t] * (1+Log[t]) )/(t*(1 + Log[r[t]] ) ); ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") r = Function("r") ode = Eq(Derivative(r(t), t) - (log(t) + 1)*r(t)/(t*(log(r(t)) + 1)),0) ics = {} dsolve(ode,func=r(t),ics=ics)