Internal
problem
ID
[18461]
Book
:
DIFFERENTIAL
EQUATIONS
WITH
APPLICATIONS
AND
HISTORICAL
NOTES
by
George
F.
Simmons.
3rd
edition.
2017.
CRC
press,
Boca
Raton
FL.
Section
:
Chapter
9.
Laplace
transforms.
Section
52.
Convolutions
and
Abels
Mechanical
Problem.
Problems
at
page
474
Problem
number
:
5
Date
solved
:
Tuesday, January 28, 2025 at 11:50:25 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
Using Laplace method With initial conditions
✓ Solution by Maple
Time used: 0.394 (sec). Leaf size: 26
dsolve([diff(y(x),x$2)+a^2*y(x)=f(x),y(0) = 0, D(y)(0) = 0],y(x), singsol=all)
✓ Solution by Mathematica
Time used: 0.074 (sec). Leaf size: 103
DSolve[{D[y[x],{x,2}]+a^2*y[x]==f[x],{y[0]==0,Derivative[1][y][0] == 0}},y[x],x,IncludeSingularSolutions -> True]