Internal
problem
ID
[13940]
Book
:
APPLIED
DIFFERENTIAL
EQUATIONS
The
Primary
Course
by
Vladimir
A.
Dobrushkin.
CRC
Press
2015
Section
:
Chapter
5.5
Laplace
transform.
Homogeneous
equations.
Problems
page
357
Problem
number
:
Problem
2
Date
solved
:
Wednesday, March 05, 2025 at 10:23:59 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
Using Laplace method With initial conditions
ode:=diff(diff(y(t),t),t)+9*y(t) = 0; ic:=y(0) = 2, D(y)(0) = 0; dsolve([ode,ic],y(t),method='laplace');
ode=D[y[t],{t,2}]+9*y[t]==0; ic={y[0]==2,Derivative[1][y][0] ==0}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(9*y(t) + Derivative(y(t), (t, 2)),0) ics = {y(0): 2, Subs(Derivative(y(t), t), t, 0): 0} dsolve(ode,func=y(t),ics=ics)