Internal
problem
ID
[2314]
Book
:
Differential
equations
and
their
applications,
3rd
ed.,
M.
Braun
Section
:
Section
1.2.
Page
9
Problem
number
:
20
Date
solved
:
Saturday, March 29, 2025 at 11:53:51 PM
CAS
classification
:
[_linear]
ode:=diff(y(t),t)+1/t*y(t) = 1/t^2; dsolve(ode,y(t), singsol=all);
ode=D[y[t],t]+1/t*y[t]==1/t^2; ic={}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(Derivative(y(t), t) + y(t)/t - 1/t**2,0) ics = {} dsolve(ode,func=y(t),ics=ics)