Internal
problem
ID
[15454]
Book
:
Ordinary
Differential
Equations.
An
introduction
to
the
fundamentals.
Kenneth
B.
Howell.
second
edition.
CRC
Press.
FL,
USA.
2020
Section
:
Chapter
24.
Variation
of
parameters.
Additional
exercises
page
444
Problem
number
:
24.4
(c)
Date
solved
:
Thursday, March 13, 2025 at 06:04:24 AM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
ode:=diff(diff(diff(diff(y(x),x),x),x),x)-81*y(x) = sinh(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,4}]-81*y[x]==Sinh[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-81*y(x) - sinh(x) + Derivative(y(x), (x, 4)),0) ics = {} dsolve(ode,func=y(x),ics=ics)