Internal
problem
ID
[18899]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
VIII.
Exact
differential
equations,
and
equations
of
particular
forms.
Integration
in
series.
problems
at
page
100
Problem
number
:
Ex.
2
Date
solved
:
Monday, March 31, 2025 at 06:21:21 PM
CAS
classification
:
[[_high_order, _missing_y]]
ode:=diff(diff(diff(diff(diff(y(x),x),x),x),x),x)-m^2*diff(diff(diff(y(x),x),x),x) = exp(a*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,5}]-m^2*D[y[x],{x,3}]==Exp[a*x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") m = symbols("m") y = Function("y") ode = Eq(-m**2*Derivative(y(x), (x, 3)) - exp(a*x) + Derivative(y(x), (x, 5)),0) ics = {} dsolve(ode,func=y(x),ics=ics)