Internal
problem
ID
[15000]
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
(i)
Date
solved
:
Thursday, October 02, 2025 at 09:58:17 AM
CAS
classification
:
[_separable]
With initial conditions
ode:=diff(x(t),t) = t^3*(-x(t)+1); ic:=[x(0) = 3]; dsolve([ode,op(ic)],x(t), singsol=all);
ode=D[x[t],t]==t^3*(1-x[t]); ic={x[0]==3}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t**3*(1 - x(t)) + Derivative(x(t), t),0) ics = {x(0): 3} dsolve(ode,func=x(t),ics=ics)