Internal
problem
ID
[14599]
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
:
5
Date
solved
:
Thursday, October 02, 2025 at 09:43:52 AM
CAS
classification
:
[_separable]
ode:=diff(x(t),t)+1/t^2*x(t) = 1/t^2; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]+x[t]/t^2==1/t^2; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(Derivative(x(t), t) + x(t)/t**2 - 1/t**2,0) ics = {} dsolve(ode,func=x(t),ics=ics)