Internal
problem
ID
[18513]
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
:
Monday, March 31, 2025 at 05:40:56 PM
CAS
classification
:
[[_high_order, _missing_x]]
ode:=diff(diff(diff(diff(y(x),x),x),x),x)-a^4*y(x) = 0; dsolve(ode,y(x), singsol=all);
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)