Internal
problem
ID
[18818]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
VI.
Linear
equations
with
constant
coefficients.
problems
at
page
79
Problem
number
:
Ex.
1
Date
solved
:
Monday, March 31, 2025 at 06:15:40 PM
CAS
classification
:
[[_high_order, _linear, _nonhomogeneous]]
ode:=diff(diff(diff(diff(y(x),x),x),x),x)+y(x) = x*exp(2*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,4}]+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(-x*exp(2*x) + y(x) + Derivative(y(x), (x, 4)),0) ics = {} dsolve(ode,func=y(x),ics=ics)