Internal
problem
ID
[20286]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
VIII.
End
of
chapter
problems
at
page
107
Problem
number
:
Ex.
20
Date
solved
:
Thursday, October 02, 2025 at 05:41:02 PM
CAS
classification
:
[[_3rd_order, _quadrature]]
ode:=diff(diff(diff(y(x),x),x),x) = f(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]==f[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-f(x) + Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)