Internal
problem
ID
[14069]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
5.6
Laplace
transform.
Nonhomogeneous
equations.
Problems
page
368
Problem
number
:
Problem
4(a)
Date
solved
:
Tuesday, January 28, 2025 at 06:13:34 AM
CAS
classification
:
[[_2nd_order, _missing_y]]
Using Laplace method With initial conditions
✓ Solution by Maple
Time used: 13.396 (sec). Leaf size: 52
dsolve([diff(y(t),t$2)-2*diff(y(t),t)=piecewise(0<=t and t<1,4,t>=1,6),y(0) = -6, D(y)(0) = 1],y(t), singsol=all)
✓ Solution by Mathematica
Time used: 0.042 (sec). Leaf size: 68
DSolve[{D[y[t],{t,2}]-2*D[y[t],t]==Piecewise[{{4,0<=t<1},{6,t>=1}}],{y[0]==-6,Derivative[1][y][0] ==1}},y[t],t,IncludeSingularSolutions -> True]