Internal
problem
ID
[18522]
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
63.
Problems
at
page
196
Problem
number
:
2
Date
solved
:
Monday, March 31, 2025 at 05:41:10 PM
CAS
classification
:
[[_high_order, _missing_y]]
ode:=diff(diff(diff(diff(y(x),x),x),x),x)-3*diff(diff(diff(y(x),x),x),x)+3*diff(diff(y(x),x),x)-diff(y(x),x) = exp(2*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,4}]-3*D[y[x],{x,3}]+3*D[y[x],{x,2}]-D[y[x],x]==Exp[2*x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-exp(2*x) - Derivative(y(x), x) + 3*Derivative(y(x), (x, 2)) - 3*Derivative(y(x), (x, 3)) + Derivative(y(x), (x, 4)),0) ics = {} dsolve(ode,func=y(x),ics=ics)