Internal
problem
ID
[22196]
Book
:
Schaums
outline
series.
Differential
Equations
By
Richard
Bronson.
1973.
McGraw-Hill
Inc.
ISBN
0-07-008009-7
Section
:
Chapter
10.
Linear
differential
equations.
General
remarks.
Solved
problems.
Page
54
Problem
number
:
10.1
(d)
Date
solved
:
Thursday, October 02, 2025 at 08:33:59 PM
CAS
classification
:
[_linear]
ode:=3*diff(y(x),x)+x*y(x) = exp(-x^2); dsolve(ode,y(x), singsol=all);
ode=3*D[y[x],x]+x*y[x]==Exp[-x^2]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*y(x) + 3*Derivative(y(x), x) - exp(-x**2),0) ics = {} dsolve(ode,func=y(x),ics=ics)