Internal
problem
ID
[22252]
Book
:
Schaums
outline
series.
Differential
Equations
By
Richard
Bronson.
1973.
McGraw-Hill
Inc.
ISBN
0-07-008009-7
Section
:
Chapter
14.
The
method
of
undetermined
coefficients.
Solved
problems.
Page
71
Problem
number
:
14.8
Date
solved
:
Thursday, October 02, 2025 at 08:36:39 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)