8.9.15 problem 47

Internal problem ID [859]
Book : Differential equations and linear algebra, 3rd ed., Edwards and Penney
Section : Section 5.3, second order linear equations. Page 323
Problem number : 47
Date solved : Wednesday, February 05, 2025 at 04:34:32 AM
CAS classification : [[_2nd_order, _missing_x]]

\begin{align*} y^{\prime \prime }&=\left (-2+2 i \sqrt {3}\right ) y \end{align*}

Solution by Maple

Time used: 0.003 (sec). Leaf size: 30

dsolve(diff(y(x),x$2)=(-2+2*I*sqrt(3))*y(x),y(x), singsol=all)
 
\[ y = c_1 \,{\mathrm e}^{-\left (1+i \sqrt {3}\right ) x}+c_2 \,{\mathrm e}^{\left (1+i \sqrt {3}\right ) x} \]

Solution by Mathematica

Time used: 0.022 (sec). Leaf size: 41

DSolve[D[y[x],{x,2}]==(-2+2*I*Sqrt[3])*y[x],y[x],x,IncludeSingularSolutions -> True]
 
\[ y(x)\to c_1 e^{x+i \sqrt {3} x}+c_2 e^{\left (-1-i \sqrt {3}\right ) x} \]