Internal
problem
ID
[4468]
Book
:
Differential
equations
for
engineers
by
Wei-Chau
XIE,
Cambridge
Press
2010
Section
:
Chapter
4.
Linear
Differential
Equations.
Page
183
Problem
number
:
25
Date
solved
:
Tuesday, March 04, 2025 at 06:46:05 PM
CAS
classification
:
[[_3rd_order, _missing_y]]
ode:=diff(diff(diff(y(x),x),x),x)-3*diff(y(x),x) = 9*x^2; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]-3*D[y[x],x]==9*x^2; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-9*x**2 - 3*Derivative(y(x), x) + Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)