GridironCPJ
- 44
- 0
What conditions most be true for these two norms to be equal? Or are they always equal?
The Frobenius norm of a matrix coincides with the 2-norm if and only if the matrix has rank 1. This is established through the definitions where the Frobenius norm is calculated as the square root of the sum of the squares of the singular values, while the 2-norm is the maximum singular value. In cases where the matrix can be expressed as A = cr, where c is a column vector and r is a row vector, the two norms are equal. Additionally, for any matrix A, the relationship ||A||₂ ≤ ||A||₍ₓ₎ ≤ √r ||A||₂ holds, where r is the rank of A.
PREREQUISITESMathematicians, data scientists, and engineers working with linear algebra, particularly those involved in matrix computations and optimizations.
GridironCPJ said:What conditions most be true for these two norms to be equal? Or are they always equal?
Hawkeye18 said:The Frobenius and 2-norm of a matrix coincide if and only if the matrix has rank 1 (i.e. if and only if the matrix can be represented as A=c r, where r is a row and c is a column).
You can see that from the fact that Frobenius norm is \left( \sum_k s_k^2\right)^{1/2} and the 2-norm is \max s_k, where s_k are singular values. So equality happens if and only if there is only one non-zero singular value, which is equivalent to the fact that the rank is 1.
Hawkeye18 said:The Frobenius and 2-norm of a matrix coincide if and only if the matrix has rank 1
AlephZero said:More generally, ##||A||_2 \le ||A||_F \le \sqrt{r}||A||_2## where r is the rank of A.
Assuming you accept Hawkeye18's formulas, namelytomz said:May you shed some light on this? Or quote any possible reference? Thanks