Internal
problem
ID
[19458]
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
9
page
42
Date
solved
:
Thursday, March 13, 2025 at 02:31:51 PM
CAS
classification
:
[[_3rd_order, _linear, _nonhomogeneous]]
ode:=diff(diff(diff(y(x),x),x),x)-3*diff(diff(y(x),x),x)+4*diff(y(x),x)-2*y(x) = exp(x)+cos(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,3}]-3*D[y[x],{x,2}]+4*D[y[x],x]-2*y[x]==Exp[x]+Cos[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-2*y(x) - exp(x) - cos(x) + 4*Derivative(y(x), x) - 3*Derivative(y(x), (x, 2)) + Derivative(y(x), (x, 3)),0) ics = {} dsolve(ode,func=y(x),ics=ics)