Cross-posted on Scientific Computing Stack Exchange
Are there real-world applications that call specifically for eigenvalues rather than singular values?
Top eigenvalue is useful to establish convergence, but what about the rest?
I often see eigendecomposition used as "poor-man's SVD" For instance it's used in Matlab's Lyapunov solver, but that could be reformulated in terms of SVD with greater cost ($22n^3$ instead of $9n^3$, Higham's big six), while gaining numerical stability. Similarly, PCA can be done using SVD.
Picture below: two linear transformations below have the same eigenvalues:





The eigenvalues of partial differential operators describing mechanical or electromagnetic systems are related to the resonance frequencies. For example, the frequencies at which a drum or guitar or string instrument vibrates are the square roots of the eigenvalues of the Laplace operator. The frequencies at which a building or bridge sways are the square roots of the eigenvalues of the linear elasticity operator. The frequencies at which an electromagnetic cavity (say, in your microwave oven, or in the particle accelerators used for medical cancer therapy devices) oscillates are the square roots of the eigenvalues of the Maxwell operator. There are many practical applications in which knowing these resonance frequencies is important, typically because you want that a device/instrument/building does or does not have specific resonant frequencies.
In order to compute the eigenvalues of these operators, you "discretize" them to obtain a finite-dimensional matrix, and then you compute the eigenvalues of this matrix. In many cases, these matrices have sizes ranging in the hundreds of thousands to the hundreds of millions.