The famous Mandelbrot fractal can be calculated by starting $z_0=0$ and then iterating
$$z_{n+1} = {z_n}^2+c$$
and seeing which $c$ makes $z$ run off to complex infinity ( and if so, how fast ).
Can we represent this with a matrix? If we can, would that let us analyze it's behavior with linear algebra?
Have you heard about IFS (https://en.wikipedia.org/wiki/Iterated_function_system) (http://www.hiddendimension.com/fractalmath/ifs_fractals_main.html)? They use linear algebra and generate fractals in the same "spirit" as Mandelbrot fractals (https://mathoverflow.net/q/199286).