Internal
problem
ID
[15002]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
8,
Separable
equations.
Exercises
page
72
Problem
number
:
8.1
(iii)
Date
solved
:
Thursday, October 02, 2025 at 09:58:22 AM
CAS
classification
:
[_separable]
ode:=diff(x(t),t) = t^2*x(t); dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]==t^2*x[t]; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t**2*x(t) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)