Internal
problem
ID
[311]
Book
:
Elementary
Differential
Equations.
By
C.
Henry
Edwards,
David
E.
Penney
and
David
Calvis.
6th
edition.
2008
Section
:
Chapter
2.
Linear
Equations
of
Higher
Order.
Section
2.3
(Homogeneous
equations
with
constant
coefficients).
Problems
at
page
134
Problem
number
:
47
Date
solved
:
Tuesday, March 04, 2025 at 11:07:39 AM
CAS
classification
:
[[_2nd_order, _missing_x]]
ode:=diff(diff(y(x),x),x) = (-2+2*I*3^(1/2))*y(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],{x,2}]==(-2+2*I*Sqrt[3])*y[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq((-sqrt(3)*complex(0, 2) + 2)*y(x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)