Internal
problem
ID
[13260]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
section
2.3
(Linear
equations).
Exercises
page
56
Problem
number
:
18
Date
solved
:
Monday, March 31, 2025 at 07:44:04 AM
CAS
classification
:
[_separable]
ode:=diff(x(t),t)+1/2*(t+1)/t*x(t) = (t+1)/x(t)/t; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]+(t+1)/(2*t)*x[t]==(t+1)/(x[t]*t); ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(Derivative(x(t), t) + (t + 1)*x(t)/(2*t) - (t + 1)/(t*x(t)),0) ics = {} dsolve(ode,func=x(t),ics=ics)