Internal
problem
ID
[7346]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
8,
Ordinary
differential
equations.
Section
13.
Miscellaneous
problems.
page
466
Problem
number
:
4
Date
solved
:
Tuesday, September 30, 2025 at 04:29:18 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(r(t),t),t)-6*diff(r(t),t)+9*r(t) = 0; dsolve(ode,r(t), singsol=all);
ode=D[r[t],{t,2}]-6*D[r[t],t]+9*r[t]==0; ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") r = Function("r") ode = Eq(9*r(t) - 6*Derivative(r(t), t) + Derivative(r(t), (t, 2)),0) ics = {} dsolve(ode,func=r(t),ics=ics)