Internal
problem
ID
[16589]
Book
:
INTRODUCTORY
DIFFERENTIAL
EQUATIONS.
Martha
L.
Abell,
James
P.
Braselton.
Fourth
edition
2014.
ElScAe.
2014
Section
:
Chapter
6.
Systems
of
Differential
Equations.
Exercises
6.1,
page
282
Problem
number
:
13
Date
solved
:
Monday, March 31, 2025 at 02:59:45 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(x(t),t),t)-3*diff(x(t),t)+4*x(t) = 0; dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,2}]-3*D[x[t],t]+4*x[t]==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(4*x(t) - 3*Derivative(x(t), t) + Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)