Internal
problem
ID
[14456]
Book
:
Ordinary
Differential
Equations
by
Charles
E.
Roberts,
Jr.
CRC
Press.
2010
Section
:
Chapter
5.
The
Laplace
Transform
Method.
Exercises
5.2,
page
248
Problem
number
:
7
Date
solved
:
Monday, March 31, 2025 at 12:27:34 PM
CAS
classification
:
[[_high_order, _missing_y]]
Using Laplace method
ode:=diff(diff(diff(diff(y(x),x),x),x),x)-2*diff(diff(diff(y(x),x),x),x)+diff(diff(y(x),x),x) = x*exp(x)-3*x^2; dsolve(ode,y(x),method='laplace');
ode=D[y[x],{x,4}]-2*D[y[x],{x,3}]+D[y[x],{x,2}]==x*Exp[x]-3*x^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(3*x**2 - x*exp(x) + Derivative(y(x), (x, 2)) - 2*Derivative(y(x), (x, 3)) + Derivative(y(x), (x, 4)),0) ics = {} dsolve(ode,func=y(x),ics=ics)