Internal
problem
ID
[6220]
Book
:
Mathematical
Methods
in
the
Physical
Sciences.
third
edition.
Mary
L.
Boas.
John
Wiley.
2006
Section
:
Chapter
8,
Ordinary
differential
equations.
Section
13.
Miscellaneous
problems.
page
466
Problem
number
:
13
Date
solved
:
Wednesday, March 05, 2025 at 12:25:23 AM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(y(x),x),x)+4*diff(y(x),x)+5*y(x) = 26*exp(3*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+4*D[y[x],x]+5*y[x]==26*Exp[3*x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(5*y(x) - 26*exp(3*x) + 4*Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)