Is there a geometric interpretation of a non-symmetric matrix having only real eigenvalues?
It appears that multiplying random matrices with IID random entries eventually produces a matrix with only real eigenvalues, wondering if this can be turned into a statement about how random linear maps transform a vector.
For instance, code below multiples $10\ 2\times 2$ random matrices, eigenvalues are almost always real.
n = 2;
depth = 10;
dist = NormalDistribution[];
sample := RandomVariate[dist, {n, n}]/Sqrt[n];
sampled := Nest[sample . # &, sample, depth - 1];
Eigenvalues[sampled] (* {-0.859186, 0.613002} *)
Some trajectories of 1,1 vector evolving in accordance with random 2D linear transformation. It appears that power iteration converges to a line for all matrices with real eigenvalues but not for complex-valued ones
(code)

