Internal
problem
ID
[17341]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
2.
First
Order
Equations.
Exercises
2.4,
page
57
Problem
number
:
32
Date
solved
:
Thursday, October 02, 2025 at 02:06:04 PM
CAS
classification
:
[_linear]
With initial conditions
ode:=1+1/t^2*y(t)-1/t*diff(y(t),t) = 0; ic:=[y(2) = 1]; dsolve([ode,op(ic)],y(t), singsol=all);
ode=(1+y[t]/t^2)-1/t*D[y[t],t]==0; ic={y[2]==1}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(1 - Derivative(y(t), t)/t + y(t)/t**2,0) ics = {y(2): 1} dsolve(ode,func=y(t),ics=ics)