Internal
problem
ID
[4463]
Book
:
Differential
equations
for
engineers
by
Wei-Chau
XIE,
Cambridge
Press
2010
Section
:
Chapter
4.
Linear
Differential
Equations.
Page
183
Problem
number
:
20
Date
solved
:
Sunday, March 30, 2025 at 03:23:16 AM
CAS
classification
:
[[_3rd_order, _missing_y]]
ode:=diff(diff(diff(y(x),x),x),x)-4*diff(diff(y(x),x),x)+3*diff(y(x),x) = x^2+x*exp(2*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]-4*D[y[x],{x,2}]+3*D[y[x],x]==x^2+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**2 - x*exp(2*x) + 3*Derivative(y(x), x) - 4*Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)