Internal
problem
ID
[3491]
Book
:
Mathematical
methods
for
physics
and
engineering,
Riley,
Hobson,
Bence,
second
edition,
2002
Section
:
Chapter
15,
Higher
order
ordinary
differential
equations.
15.4
Exercises,
page
523
Problem
number
:
Problem
15.9(a)
Date
solved
:
Tuesday, March 04, 2025 at 04:43:21 PM
CAS
classification
:
[[_3rd_order, _with_linear_symmetries]]
ode:=diff(diff(diff(y(x),x),x),x)-12*diff(y(x),x)+16*y(x) = 32*x-8; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]-12*D[y[x],x]+16*y[x]==32*x-8; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-32*x + 16*y(x) - 12*Derivative(y(x), x) + Derivative(y(x), (x, 3)) + 8,0) ics = {} dsolve(ode,func=y(x),ics=ics)