Questions tagged [matrix-norms]

This tag is for questions regarding the Matrix Norm, a vector norm in a vector space whose elements (vectors) are matrices (of given dimensions).

A matrix norm of a matrix $~\lVert A \rVert~$ is any mapping from $~\mathbb R^{n×n}~$to$~\mathbb R~$ with the following three properties:

$1.~$ $~\lVert A \rVert~ = 0~$, iff $~A = 0~~~~$ (Definiteness)

$2.~$ $~\lVert A \rVert~ > 0~$, if $~A \ne 0~~~~$ (Positivity)

$3.~$ $~\lVert \alpha~A \rVert~=~|α|~\lVert A \rVert~$, for any $~α ∈ \mathbb R~~~~$ (Homogeneity)

$4.~$ $~\lVert A+B \rVert ≤ \lVert A \rVert + \lVert B \rVert~$ (Triangular Inequality)

for any matrix $~A,~ B ∈ \mathbb R^{n×n}~$.

In addition to these required properties for matrix norm, some of them also satisfy these additional properties not required of all matrix norms:

  • $~\lVert A \rVert - \lVert B \rVert\le \lVert A-B \rVert~$
  • $~\lVert Ax \rVert~\le~\lVert A \rVert\cdot\lVert x \rVert~~~~$ (Subordinance)
  • $~\lVert AB \rVert~\le~\lVert A \rVert\cdot\lVert B \rVert~~~~$ (Submultiplicativity)

A matrix norm that satisfies this additional property is called a sub-multiplicative norm or, subordinate matrix norm (in some books, the terminology matrix norm is used only for those norms which are sub-multiplicative). The set of all $~ n\times n~$ matrices, together with such a sub-multiplicative norm, is an example of a Banach algebra.

References:

https://en.wikipedia.org/wiki/Matrix_norm

http://mathworld.wolfram.com/MatrixNorm.html

754 questions
2
votes
1 answer

Induced Matrix norm of ||$\alpha$I||

If I have a matrix A = $\alpha$I where I is the identity matrix and a is some non-zero real number. How would I go about taking the induced matrix norm of it? I'm leaning towards using the submultiplicativity property, but I'm just not really sure…
nuni
  • 23
2
votes
0 answers

Why does the Frobenius Norm take the squares of the absolute values?

According to this page: https://mathworld.wolfram.com/FrobeniusNorm.html the frobenius norm is equal to: $$\left\|A\right\|_F=\sqrt{\sum_{i=1}^m\sum_{i=1}^n |a_{i, j}|^2}$$ and I find it weird that it takes the absolute value on top of squaring it.…
Mario
  • 133
1
vote
0 answers

Why the 2 norm of symmetric matrix A in bounded by its infinity norm?

For an abstract matrix $A$ of dimension $p\times p$ and $p$ can approach infinity, we known that $\|A\|_2 \leq \sqrt{p}\|A\|_\infty$. However, in some papers, e.g., the sentences below A.18 in page 13, and the sentences above Lemma 3 in page 13, I…
1
vote
0 answers

Is the order of convergence of $\|A\|_\infty$ and the order of $\|A^{-1}\|_\infty$ reciprocal?

For $n\times n$ matrix A, if $\|A\|_\infty=O(1/n)$, can I deduce $\|A^{-1}\|_\infty=O(n)$? Here, $\|A\|_{\infty}=\max _{1 \leq i \leq n} \sum_{j=1}^{n}\left|a_{i j}\right|$.
1
vote
1 answer

Is it possible to construct a matrix norm that uses minimum instead of maximum over a compact convex set?

I'm reading a paper where the following matrix norm is used: $$ ||A||_{C, 2} = \max_{x \in C} \|Ax\|_2, $$ where A is a $d \times q $ matrix, $C$ is a compact convex set in $\mathbb{R}^q$, and $\|.\|_2$is a standard Euclidean norm in…
1
vote
1 answer

1 norm $\|\|_1$, of non square matrix

Does $1$ norm exist for non-square matrices? By $1$ norm I mean $d (x,y)=\sum_{i=1}^{n} |x^i-y^i|, x=(x_1,\dots, x_n), y=(y_1,\dots, y_n)$ Suppose $A$ is $m\times n, (m\ne n)$ matrix what can we say about $\|A\|_1$? Also, can we say …
Myshkin
  • 35,974
  • 27
  • 154
  • 332
0
votes
0 answers

Triangle inequality for weighted norms

I am trying to prove or disprove the triangle inequality for the function: $f(X) = \sqrt{\sum\limits_{k=1}^{d}\frac{|X_{k}|^{2}}{k}}$ ; where $X \in R^{d}$. I tried whatever I could, and my calculations are shown below. I want to know if we can take…
0
votes
2 answers

is $\sqrt{||T^TT||_2}$ a matrix norm of T?

It's positive-valued and absolutely homogeneous, but I can't prove it satisfies the triangle inequality. I tried many "counter examples", but all of them satisify the inequality. If we take T and K matrices, we get to this expression $\sqrt{||T^TT +…
sadcat_1
  • 249
0
votes
1 answer

Is the matrix norm of a $1$x$m$ matrix A the same as the vector norm of a $m$-dimensional row vector?

Consider a matrix $A$ of order $1$x$m$ and a $m$-dimensional row vector $x=(x_1,x_2,\dots,x_m)$. $||A||_{\infty}=$ maximum row sum. And $||x||_{\infty} =$ max$\{|x_1|,\dots,|x_n|\}$. E.g. Let $A=[ 1 -1 ]$. Then $||A||_{\infty} = |1|+|-1|=2.$ But…
-1
votes
2 answers

How to calculate Norm for a Polynomial in P(R) of (1+x)

Editing my question to add more details. I am doing a course for data science where the first module is Linear Algebra. In one of the chapter about Norm, they taught about vectors. In practice quiz question is "Question 5 Find the norm of the…