Internal
problem
ID
[13252]
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
:
Wednesday, March 05, 2025 at 09:31:42 PM
CAS
classification
:
[_separable]
ode:=diff(x(t),t)+1/2*(t+1)/t*x(t) = (t+1)/t/x(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)