Internal
problem
ID
[6527]
Book
:
Schaums
Outline
Differential
Equations,
4th
edition.
Bronson
and
Costa.
McGraw
Hill
2014
Section
:
Chapter
12.
VARIATION
OF
PARAMETERS.
page
104
Problem
number
:
Problem
12.1
Date
solved
:
Wednesday, March 05, 2025 at 12:55:49 AM
CAS
classification
:
[[_3rd_order, _missing_y]]
ode:=diff(diff(diff(y(x),x),x),x)+diff(y(x),x) = sec(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]+D[y[x],x]==Sec[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(Derivative(y(x), x) + Derivative(y(x), (x, 3)) - 1/cos(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)