After studying some linear algebra, the true meaning of eigenvalues, eigenvectors, and positive definite matrix are still ambiguous. So, could you answer my questions or explanations about those things? Tell me if I am wrong or correct, please.
First, as I understood, 1x1 matrix $a$ such as 2, -2, 1+j can be easily classified into several fields.
- +2 is Positive Real
- -2 is Negative Real
- 1+j is Complex
This classification can be done by the following observation, alternatively. If we multiply $a$ to $1$, then
- $2\cdot 1= 1$ : same sign
- $-2\cdot 1 = -2$ : opposite sign
- $1+j \cdot 1 = 1+j$ : complex
Likewise, $n\times n$ matrix $A$ can be classified. The way is to observe the result $Ax$ for an arbitrary vector $x$.
- If we multiply the real vector $x$ to $A$ and the result $Ax$ is also real, then we can classify $A$ as "real" matrix. (Hermitian)
- If we multiply vector $x$ to $A$ and the result $Ax$ has still the same direction as $x$, then we can classify $A$ as "real and positive" matrix.
- If we multiply vector $x$ to $A$ and the result $Ax$ has the opposite direction to $x$, then we can classify $A$ as "real and negative" matrix.
Moreover, for ease of classification, we do the projection $Ax$ onto $x$, i.e., $x^HAx$ is clearer metric to decide whether the matrix $A$ is positive definite, real (Hermitian), negative definite, etc. Thus, I think the definition of the three matrices deal with $x^H A x$.
Also, eigenvalue means
$Ax=\lambda x$
where $x$ is the corresponding eigenvectors to $\lambda$. Now if $A$ has $k$ eigenvectors, then, an arbitrary vector $x$ can be expressed by $k$ eigenvectors. (If $k<n$, the other $n-k$ components of $x$ is meaningless in transformation $Ax$.) Then the followings make sense.
- If $x$ is real and the $k$ eigenvalues are real, then $Ax$ must be real.
- If $x$ is real and the $k$ eigenvalues are positive definite, then $Ax$ must be real and has the same direction as $x$.
- If $x$ is real and the $k$ eigenvalues are negative definite, then $Ax$ must be real and has the opposite direction as $x$.
So, the two things can be combined as follows;
- The eigenvalues are real values = real matrix (like Hermitian) = $Ax$ is real for a real vector $x$ = $x^H A x$ is real.
- The eigenvalues are real and positive values = positive definite = $Ax$ has the same direction as $x$ = $x^H A x > 0$.
- The eigenvalues are real and negative values = negative definite = $Ax$ has the opposite direction as $x$ = $x^H A x < 0$.
Am I right?