I'm trying to make sense of some lecture slides which skip a lot of steps so I'm just deriving all the equations etc. myself.
I have rigid body system with the following FBDs

I am investigating its harmonic motion. With Newton-Euler I have derived the following state-space representation of the equations.
\begin{align} \label{eq:system} \begin{bmatrix} m & 0\\ 0 & I \end{bmatrix} \begin{bmatrix} \ddot{x}\\ \ddot{\phi} \end{bmatrix}+2k \begin{bmatrix} 2 & b-a\\ b-a & a^2+b^2 \end{bmatrix} \begin{bmatrix} x\\ \phi \end{bmatrix} = 0 \end{align} I have assumed the following forms for the solutions \begin{align} \label{eq:sol} \begin{split} x &= x_0 \cdot e^{i \omega t}\\ \phi &= \phi_0 \cdot e^{i \omega t} \end{split} \end{align} and \begin{align} \label{eq:dd_sol} \begin{split} \ddot{x} &= x_0 \left(-\omega^2 \cdot e^{i \omega t}\right)\\ \ddot{\phi} &= \phi_0 \left(-\omega^2 \cdot e^{i \omega t}\right). \end{split} \end{align}
which, by substitution, yield \begin{align} \label{eq:system2} \underbrace{ \left( - \omega^2 \begin{bmatrix} m & 0\\ 0 & I \end{bmatrix}+2k \begin{bmatrix} 2 & b-a\\ b-a & a^2+b^2 \end{bmatrix} \right)}_{\text{Y}} \underbrace{ \begin{bmatrix} x_0\\ \phi_0 \end{bmatrix}}_{\text{Z}} \cdot e^{i \omega t} = 0 \end{align}
This is where it gets funky. In the slides the exponential term is gone. I'm not quite sure why. The second funky part is where we want to solve the eigenvalue problem $(A-\lambda I)\mathbf{x} = 0$ and $A$ is then defined as \begin{align} A = 2k \begin{bmatrix} \frac{1}{m} & 0\\ 0 & \frac{1}{I} \end{bmatrix} \begin{bmatrix} 2 & b-a \\ b-a & a^2+b^2 \end{bmatrix} \end{align} with $\lambda = \omega^2$.
It seems that the terms between the brackets, Y, have been set equal to each other. Why? What I can infer from this is that Y is a non-trivial solution whereas, Z, has a trivial solution of 0.
Basically, I do not understand why the exponential term disappears and then how $A$ is defined to solve the eigenvalue problem.