Internal
problem
ID
[13959]
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
13
Date
solved
:
Monday, March 31, 2025 at 08:20:17 AM
CAS
classification
:
[[_high_order, _missing_x]]
Using Laplace method With initial conditions
ode:=diff(diff(diff(diff(y(t),t),t),t),t)+y(t) = 0; ic:=y(0) = 1, D(y)(0) = 0, (D@@2)(y)(0) = 0, (D@@3)(y)(0) = 1/2*2^(1/2); dsolve([ode,ic],y(t),method='laplace');
ode=D[y[t],{t,4}]+y[t]==0; ic={y[0]==0,Derivative[1][y][0] ==0,Derivative[2][y][0] ==0,Derivative[3][y][0]==1/Sqrt[2]}; DSolve[{ode,ic},y[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") y = Function("y") ode = Eq(y(t) + Derivative(y(t), (t, 4)),0) ics = {y(0): 1, Subs(Derivative(y(t), t), t, 0): 0, Subs(Derivative(y(t), (t, 2)), t, 0): 0, Subs(Derivative(y(t), (t, 3)), t, 0): sqrt(2)/2} dsolve(ode,func=y(t),ics=ics)