Internal
problem
ID
[24613]
Book
:
A
short
course
in
Differential
Equations.
Earl
D.
Rainville.
Second
edition.
1958.
Macmillan
Publisher,
NY.
CAT
58-5010
Section
:
Chapter
8.
Linear
Differential
Equations
with
constant
coefficients.
Exercises
at
page
128
Problem
number
:
9
Date
solved
:
Thursday, October 02, 2025 at 10:46:30 PM
CAS
classification
:
[[_high_order, _missing_x]]
ode:=diff(diff(diff(diff(diff(y(x),x),x),x),x),x)+diff(diff(diff(diff(y(x),x),x),x),x)-6*diff(diff(diff(y(x),x),x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,5}]+D[y[x],{x,4}]-6*D[y[x],{x,3}] ==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-6*Derivative(y(x), (x, 3)) + Derivative(y(x), (x, 4)) + Derivative(y(x), (x, 5)),0) ics = {} dsolve(ode,func=y(x),ics=ics)