Internal
problem
ID
[19805]
Book
:
Elementary
Differential
Equations.
By
R.L.E.
Schwarzenberger.
Chapman
and
Hall.
London.
First
Edition
(1969)
Section
:
Chapter
4.
Autonomous
systems.
Exercises
at
page
69
Problem
number
:
5
(iiI=i)
Date
solved
:
Thursday, October 02, 2025 at 04:43:59 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(x(t),t),t)-4*diff(x(t),t)+5*x(t) = 0; dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,2}]-4*D[x[t],t]+5*x[t]==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(5*x(t) - 4*Derivative(x(t), t) + Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)