Internal
problem
ID
[15903]
Book
:
DIFFERENTIAL
EQUATIONS
by
Paul
Blanchard,
Robert
L.
Devaney,
Glen
R.
Hall.
4th
edition.
Brooks/Cole.
Boston,
USA.
2012
Section
:
Chapter
1.
First-Order
Differential
Equations.
Exercises
section
1.2.
page
33
Problem
number
:
19
Date
solved
:
Thursday, October 02, 2025 at 10:29:36 AM
CAS
classification
:
[_separable]
ode:=diff(v(t),t) = t^2*v(t)-2-2*v(t)+t^2; dsolve(ode,v(t), singsol=all);
ode=D[ v[t],t]==t^2*v[t]-2-2*v[t]+t^2; ic={}; DSolve[{ode,ic},v[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") v = Function("v") ode = Eq(-t**2*v(t) - t**2 + 2*v(t) + Derivative(v(t), t) + 2,0) ics = {} dsolve(ode,func=v(t),ics=ics)