Internal
problem
ID
[23128]
Book
:
An
introduction
to
Differential
Equations.
By
Howard
Frederick
Cleaves.
1969.
Oliver
and
Boyd
publisher.
ISBN
0050015044
Section
:
Chapter
5.
Linear
equations
of
the
second
order
with
constant
coefficients.
Exercise
5a
at
page
74
Problem
number
:
14
Date
solved
:
Thursday, October 02, 2025 at 09:23:09 PM
CAS
classification
:
[[_2nd_order, _missing_x]]
With initial conditions
ode:=2*diff(diff(y(x),x),x)-15*diff(y(x),x)+27*y(x) = 0; ic:=[y(0) = 7, D(y)(0) = 1]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=2*D[y[x],{x,2}]-15*D[y[x],x]+27*y[x]==0; ic={y[0]==7,Derivative[1][y][0] ==1}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(27*y(x) - 15*Derivative(y(x), x) + 2*Derivative(y(x), (x, 2)),0) ics = {y(0): 7, Subs(Derivative(y(x), x), x, 0): 1} dsolve(ode,func=y(x),ics=ics)