This question has two parts.
- What does an eigenvalue tell you about a matrix from a pure math standpoint?
- Now, if the matrix represented some set of data, lets say pressure data, what do the eigenvalues tell us, and can you relate the pure mathematical definition of eigenvalues back to this application-based eigenvalue?
Sorry if this is a loaded question, I just constantly see eigenvalues and eigenvectors being used in my field of study and I feel like I have very little understanding of what this mathematical tool represents.
I can only try to answer 1.
"From a pure math standpoint", matrix calculus is only one computational aspect of the study of linear maps; before returning to the matrices, I therefore propose to consider an example of a simple linear map : $s:\Bbb R^2 \to \Bbb R^2, (x,y) \mapsto (2y,2x)$. To understand what $s$ is, especially do not hesitate to place points $(x,y)$ in an orthonormal reference frame for example and their images. $s$ should then appear to you as the symmetry with respect to the line $d$ of equation $y=x$ composed with the homothety of center $0$ and ratio $2$. On $d$, vectors are just multiplied by $2$ and on the perpendicular to $d$ passing through $0$, through $-2$ : here are the eigenvalues.
The matrix of $s$ in the canonical basis is $\begin{bmatrix}0 & 2 \\2 & 0\end{bmatrix}$. $p(\lambda)=\begin{vmatrix}-\lambda & 2\\2 & -\lambda\end{vmatrix}=\lambda^2-4=(\lambda-2)(\lambda+2)=0 \iff \lambda \in \{2,-2\}$.
Here are the eigenvalues.
I hope this will help.