Internal
problem
ID
[6735]
Book
:
Schaums
Outline.
Theory
and
problems
of
Differential
Equations,
1st
edition.
Frank
Ayres.
McGraw
Hill
1952
Section
:
Chapter
16.
Linear
equations
with
constant
coefficients
(Short
methods).
Supplemetary
problems.
Page
107
Problem
number
:
26
Date
solved
:
Sunday, March 30, 2025 at 11:20:59 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(x),x),x)+diff(y(x),x)+y(x) = exp(3*x)+6*exp(x)-3*exp(-2*x)+5; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+D[y[x],x]+y[x]==Exp[3*x]+6*Exp[x]-3*Exp[-2*x]+5; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(y(x) - exp(3*x) - 6*exp(x) + Derivative(y(x), x) + Derivative(y(x), (x, 2)) - 5 + 3*exp(-2*x),0) ics = {} dsolve(ode,func=y(x),ics=ics)