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