Internal
problem
ID
[4162]
Book
:
Theory
and
solutions
of
Ordinary
Differential
equations,
Donald
Greenspan,
1960
Section
:
Chapter
4.
The
general
linear
differential
equation
of
order
n.
Exercises
at
page
63
Problem
number
:
9(b)
Date
solved
:
Monday, January 27, 2025 at 08:41:03 AM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
With initial conditions
✓ Solution by Maple
Time used: 0.032 (sec). Leaf size: 19
dsolve([diff(y(x),x$2)+9*y(x)=8*sin(x),y(1/2*Pi) = -1, D(y)(1/2*Pi) = 1],y(x), singsol=all)
✓ Solution by Mathematica
Time used: 0.018 (sec). Leaf size: 22
DSolve[{D[y[x],{x,2}]+9*y[x]==8*Sin[x],{y[Pi/2]==-1,Derivative[1][y][Pi/2] ==1}},y[x],x,IncludeSingularSolutions -> True]