Internal
problem
ID
[19462]
Book
:
A
Text
book
for
differentional
equations
for
postgraduate
students
by
Ray
and
Chaturvedi.
First
edition,
1958.
BHASKAR
press.
INDIA
Section
:
Book
Solved
Excercises.
Chapter
III.
Ordinary
linear
differential
equations
with
constant
coefficients
Problem
number
:
Ex
5
page
37
Date
solved
:
Monday, March 31, 2025 at 07:19:25 PM
CAS
classification
:
[[_2nd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(y(x),x),x)+n^2*y(x) = sec(n*x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]+n^2*y[x]==Sec[n*x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") n = symbols("n") y = Function("y") ode = Eq(n**2*y(x) + Derivative(y(x), (x, 2)) - 1/cos(n*x),0) ics = {} dsolve(ode,func=y(x),ics=ics)