Internal
problem
ID
[3499]
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.34
Date
solved
:
Tuesday, September 30, 2025 at 06:40:51 AM
CAS
classification
:
[[_3rd_order, _missing_y]]
ode:=x*diff(diff(diff(y(x),x),x),x)+2*diff(diff(y(x),x),x) = A*x; dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],{x,3}]+2*D[y[x],{x,2}]==A*x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") A = symbols("A") y = Function("y") ode = Eq(-A*x + x*Derivative(y(x), (x, 3)) + 2*Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)