saltine
- 84
- 0
Homework Statement
I am studying about eigenvalues and norms. I was wondering whether the way I understand them is correct.
Homework Equations
The Attempt at a Solution
The eigenvalue of a matrix those that satisfy Ax = \lambda x, where A is a matrix, x is an eigenvector, \lambda is a scalar. The significant here is that from the perspective of the eigenvector, a matrix multiplication with A is the same as a scalar multiplication with lambda. When A is square, non-signular, and of rank n, A has n eigenvalues and n eigenvectors. The n eigenvectors forms a basis.
Suppose vi is an eigenvector with associated eigenvalue \lambda_i. Suppose an arbitrary vector y can be presented as:
y = a v_1 + bv_2
Then
Ay = a\lambda_1v_1 + b\lambda_2v_2
The magnitude (2-norm) of vector y in terms of the eigenvector basis is \sqrt{a^2+b^2}. The magnitude of Ay is \sqrt{(a\lambda_1)^2 + (b\lambda_2)^2}. The gain in magnitude is the ration between the two, which could be a mess to compute. If we check the gain in magnitude over all possible y, we get the 2-norm of matrix A.
Since the 2-norm could be messy to compute. Say we look at the \infty-norm. With the infinity norm, the magnitude of y is the maximum value between a and b, and the magnitude of Ay is the maximum value between a\lambda_1 and b\lambda_2. The gain in magnitude is again the ratio. For each y, the gain would one of the four possiblilities: \lambda_1, \lambda_2, \lambda_1a/b, \lambda_2b/a. In the last two cases, the fraction a/b or b/a must be less than 1, because, it a > b in the first case, then the norm of y would be a, so its gain would have been \lambda_1 instead. Therefore, when all possible vector y are considered, the gain of matrix A must be the maximum between \lambda_1 and \lambda_2.
Topic 2: the eigenvalues of sum of matrices:
For a matrix A, there is a Jordan norm form which is an upper triangular matrix with the eigenvalues of A in its diagonal. A and its Jordan form J by an invertible matrix P in this fashion: AP = PJ. Since det(AP)=det(A)det(P), det(A) = \prod \lambda_i.
Suppose we have matrix A and B. A has Jordan form J such that AP = PJ. B has Jordan form K such that BQ = QK. Then the determinant of A+B is:
det(A + B) = det( PJP-1 + QKQ-1 )
If P happens to equal Q, then:
det(A + B) = det( P( J+K )P-1 ) = \prod (\lambda_j + \lambda_k)
One situation where P can equal Q is when A is the identity matrix. So the matrix M := I+B would have eigenvalues \lambda_m = 1+\lambda_b.
Is this explanation correct?
- Thanks