Internal
problem
ID
[1475]
Book
:
Elementary
differential
equations
and
boundary
value
problems,
11th
ed.,
Boyce,
DiPrima,
Meade
Section
:
Chapter
4.2,
Higher
order
linear
differential
equations.
Constant
coefficients.
page
180
Problem
number
:
11
Date
solved
:
Tuesday, September 30, 2025 at 04:34:29 AM
CAS
classification
:
[[_high_order, _missing_x]]
ode:=diff(diff(diff(diff(diff(diff(y(x),x),x),x),x),x),x)+y(x) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,6}]+y[x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x) + Derivative(y(x), (x, 6)),0) ics = {} dsolve(ode,func=y(x),ics=ics)