Internal
problem
ID
[18505]
Book
:
Elementary
Differential
Equations.
By
Thornton
C.
Fry.
D
Van
Nostrand.
NY.
First
Edition
(1929)
Section
:
Chapter
VII.
Linear
equations
of
order
higher
than
the
first.
section
56.
Problems
at
page
163
Problem
number
:
5
Date
solved
:
Thursday, March 13, 2025 at 12:10:54 PM
CAS
classification
:
[[_high_order, _missing_x]]
Solve
Time used: 0.035 (sec)
The characteristic equation is
The roots of the above equation are
Therefore the homogeneous solution is
The fundamental set of solutions for the homogeneous solution are the following
ode:=diff(diff(diff(diff(y(x),x),x),x),x)-a^4*y(x) = 0; dsolve(ode,y(x), singsol=all);
Maple trace
`Methods for high order ODEs: --- Trying classification methods --- trying a quadrature checking if the LODE has constant coefficients <- constant coefficients successful`
ode=D[y[x],{x,4}]-a^2*y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(-a**4*y(x) + Derivative(y(x), (x, 4)),0) ics = {} dsolve(ode,func=y(x),ics=ics)