Internal
problem
ID
[19138]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Chapter
III.
Ordinary
linear
differential
equations
with
constant
coefficients.
Misc.
Examples
on
chapter
III
at
page
50
Problem
number
:
13
Date
solved
:
Monday, March 31, 2025 at 06:49:32 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
With initial conditions
ode:=diff(diff(y(x),x),x)+2*diff(y(x),x)+10*y(x)+37*sin(3*x) = 0; ic:=y(1/2*Pi) = 3, D(y)(0) = 0; dsolve([ode,ic],y(x), singsol=all);
ode=D[y[x],{x,2}]+2*D[y[x],x]+10*y[x]+37*Sin[3*x]==0; ic={y[Pi/2]==3,Derivative[1][y][0] == 0}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(10*y(x) + 37*sin(3*x) + 2*Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) ics = {y(pi/2): 3, Subs(Derivative(y(x), x), x, 0): 0} dsolve(ode,func=y(x),ics=ics)