Internal
problem
ID
[7803]
Book
:
Schaums
Outline
Differential
Equations,
4th
edition.
Bronson
and
Costa.
McGraw
Hill
2014
Section
:
Chapter
11.
THE
METHOD
OF
UNDETERMINED
COEFFICIENTS.
page
95
Problem
number
:
Problem
11.13
Date
solved
:
Tuesday, September 30, 2025 at 05:05:40 PM
CAS
classification
:
[[_linear, `class A`]]
ode:=diff(y(x),x)-5*y(x) = 3*exp(x)-2*x+1; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]-5*y[x]==3*Exp[x]-2*x+1; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(2*x - 5*y(x) - 3*exp(x) + Derivative(y(x), x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)