Internal
problem
ID
[5734]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
3.
THE
DIFFERENTIAL
EQUATION
IS
LINEAR
AND
OF
SECOND
ORDER,
page
311
Problem
number
:
20
Date
solved
:
Tuesday, September 30, 2025 at 02:02:15 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=y(x)+diff(diff(y(x),x),x) = exp(2*x)*cos(x); dsolve(ode,y(x), singsol=all);
ode=y[x] + D[y[x],{x,2}] == E^(2*x)*Cos[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x) - exp(2*x)*cos(x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)