Internal
problem
ID
[20956]
Book
:
A
FIRST
COURSE
IN
DIFFERENTIAL
EQUATIONS
FOR
SCIENTISTS
AND
ENGINEERS.
By
Russell
Herman.
University
of
North
Carolina
Wilmington.
LibreText.
compiled
on
06/09/2025
Section
:
Chapter
2,
Second
order
ODEs.
Problems
section
2.6
Problem
number
:
1.d
Date
solved
:
Thursday, October 02, 2025 at 07:00:40 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(x(t),t),t)-diff(x(t),t)-6*x(t) = 0; dsolve(ode,x(t), singsol=all);
ode=D[x[t],{t,2}]-D[x[t],t]-6*x[t]==0; ic={}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(-6*x(t) - Derivative(x(t), t) + Derivative(x(t), (t, 2)),0) ics = {} dsolve(ode,func=x(t),ics=ics)