Internal
problem
ID
[6505]
Book
:
Engineering
Mathematics.
By
K.
A.
Stroud.
5th
edition.
Industrial
press
Inc.
NY.
2001
Section
:
Program
25.
Second
order
differential
equations.
Further
problems
25.
page
1094
Problem
number
:
20
Date
solved
:
Monday, January 27, 2025 at 02:09:28 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
With initial conditions
✓ Solution by Maple
Time used: 0.011 (sec). Leaf size: 25
dsolve([diff(x(t),t$2)+5*diff(x(t),t)+6*x(t)=cos(t),x(0) = 1/10, D(x)(0) = 0],x(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.056 (sec). Leaf size: 26
DSolve[{D[x[t],{t,2}]+5*D[x[t],t]+6*x[t]==Cos[t],{x[0]==1/10,Derivative[1][x][0 ]==0}},x[t],t,IncludeSingularSolutions -> True]