Internal
problem
ID
[13666]
Book
:
AN
INTRODUCTION
TO
ORDINARY
DIFFERENTIAL
EQUATIONS
by
JAMES
C.
ROBINSON.
Cambridge
University
Press
2004
Section
:
Chapter
9,
First
order
linear
equations
and
the
integrating
factor.
Exercises
page
86
Problem
number
:
9.1
(vii)
Date
solved
:
Monday, March 31, 2025 at 08:07:10 AM
CAS
classification
:
[[_linear, `class A`]]
ode:=diff(x(t),t)+5*x(t) = t; dsolve(ode,x(t), singsol=all);
ode=D[x[t],t]+5*x[t]==t; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-t + 5*x(t) + Derivative(x(t), t),0) ics = {} dsolve(ode,func=x(t),ics=ics)