Internal
problem
ID
[22273]
Book
:
Schaums
outline
series.
Differential
Equations
By
Richard
Bronson.
1973.
McGraw-Hill
Inc.
ISBN
0-07-008009-7
Section
:
Chapter
15.
Variation
of
parameteres.
Supplementary
problems
Problem
number
:
15.11
Date
solved
:
Thursday, October 02, 2025 at 08:36:58 PM
CAS
classification
:
[[_3rd_order, _quadrature]]
ode:=diff(diff(diff(y(x),x),x),x) = 12; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]==12; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), (x, 3)) - 12,0) ics = {} dsolve(ode,func=y(x),ics=ics)