Internal
problem
ID
[19795]
Book
:
Elementary
Differential
Equations.
By
R.L.E.
Schwarzenberger.
Chapman
and
Hall.
London.
First
Edition
(1969)
Section
:
Chapter
3.
Solutions
of
first-order
equations.
Exercises
at
page
47
Problem
number
:
4
(iv)
Date
solved
:
Thursday, October 02, 2025 at 04:43:47 PM
CAS
classification
:
[_linear]
ode:=t^3*diff(x(t),t)+(-3*t^2+2)*x(t) = t^3; dsolve(ode,x(t), singsol=all);
ode=t^3*D[x[t],t]+(2-3*t^2)*x[t]==t^3; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(t**3*Derivative(x(t), t) - t**3 + (2 - 3*t**2)*x(t),0) ics = {} dsolve(ode,func=x(t),ics=ics)