Internal
problem
ID
[18841]
Book
:
Introductory
Course
On
Differential
Equations
by
Daniel
A
Murray.
Longmans
Green
and
Co.
NY.
1924
Section
:
Chapter
VI.
Linear
equations
with
constant
coefficients.
Examples
on
chapter
VI,
page
80
Problem
number
:
Ex.
27
Date
solved
:
Thursday, March 13, 2025 at 01:03:09 PM
CAS
classification
:
[[_2nd_order, _with_linear_symmetries]]
ode:=diff(diff(y(x),x),x)-9*diff(y(x),x)+20*y(x) = 20*x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]-9*D[y[x],x]+20*y[x]==20*x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-20*x + 20*y(x) - 9*Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)