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