Internal
problem
ID
[22410]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
1.
Differential
equations
in
general.
A
Exercises
at
page
12
Problem
number
:
1
(f)
Date
solved
:
Thursday, October 02, 2025 at 08:38:35 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(x(y),y),y)-3*x(y) = sin(y); dsolve(ode,x(y), singsol=all);
ode=D[x[y],{y,2}]-3*x[y]==Sin[y]; ic={}; DSolve[{ode,ic},x[y],y,IncludeSingularSolutions->True]
from sympy import * y = symbols("y") x = Function("x") ode = Eq(-3*x(y) - sin(y) + Derivative(x(y), (y, 2)),0) ics = {} dsolve(ode,func=x(y),ics=ics)