Internal
problem
ID
[531]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
4.
Laplace
transform
methods.
Section
4.2
(Transformation
of
initial
value
problems).
Problems
at
page
287
Problem
number
:
2
Date
solved
:
Tuesday, March 04, 2025 at 11:26:14 AM
CAS
classification
:
[[_2nd_order, _missing_x]]
Using Laplace method With initial conditions
ode:=diff(diff(x(t),t),t)+9*x(t) = 0; ic:=x(0) = 3, D(x)(0) = 4; dsolve([ode,ic],x(t),method='laplace');
ode=D[x[t],{t,2}]+9*x[t]==0; ic={x[0]==3,Derivative[1][x][0] ==4}; DSolve[{ode,ic},x[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") x = Function("x") ode = Eq(9*x(t) + Derivative(x(t), (t, 2)),0) ics = {x(0): 3, Subs(Derivative(x(t), t), t, 0): 4} dsolve(ode,func=x(t),ics=ics)