norms Flashcards

1
Q

vector norm:

A

a function ||.||:C^(n)->R satisfying:
||x||>=0 with equality iff x=0 (positive definiteness)
||αx||=|α|||x|| for all α in C and x in C^n (absolute homogeneity)
||x+y||<=||x||+||y|| for all x,y in C^n (triangle inequality)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

manhattan norm:

A

aka taxi cab norm, ||x||1=|x1|+…+|xn|=(n)Σ(i=1)|xi|

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

euclidean length:

A

||x||2=(|x1|^(2)+…+|xn|^(2))^(1/2)=((n)Σ(i=1)|xi|^2)^(1/2)=(x*x)^(1/2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

maximum norm:

A

||x||∞=max|xi|

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

p-norm:

A

||x||p=(|x1|^(p)+…+|xn|^(p))^(1/p)=((n)Σ(i=1)|xi|^p)^(1/p), p>=1, the manhattan norm euclidean length and maximum norm are all special cases of this

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

hölder inequality:

A

|x*y|<=||x||p ||y||q, (1/p)+(1/q)=1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

cauchy-schwarz inequality:

A

|x*y|<=||x||2 ||y||2, special case of the hölder inequality where p=q=2

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

equivalent:

A

all norms on C^n are equivalent, meaning if ||.||α and ||.||β are norms on C^n then there exist positive constants δ1 and δ2 such that δ1||x||α<=||x||β<=δ2||x||α for all x in C^n

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

vector norms and convergence:

A

a sequence {v^k} of vectors in C^n converges to a vector v with respect to the vector norm ||.|| iff lim(k->∞)(||v^(k)-v||=0), choice of norm doesn’t matter cause they’re equivalent

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

matrix norm:

A

a function ||.||:C^(mxn)->R that satisfies the matrix versions of the vector norm properties (just swap x with A and y with B or smth)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

frobenius norm:

A

||A||F=((m)Σ(i=1)(m)Σ(j=1)|aij|^2)^(1/2)=(trace(A*A))^(1/2)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

subordinate:

A

👀
some matrix norms are subordinate to (aka induced by) vector norms. given a vector norm, the corresponding subordinate vector norm is defined by ||A||=max(||Ax||/||x||), x!=0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

matrix p-norm:

A

||A||p=max(||Ax||p/||x||p), x!=0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

max column sum:

A

||A||1=max(||Ax||1/||x||1)=max((m)Σ(i=1)|aij|)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

max row sum:

A

||A||∞=max(||Ax||∞/||x||∞)=max((n)Σ(j=1)|aij|)=||A^T||1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

spectral norm:

A

||A||2=max(||Ax||2/||x||2)=root(λ(max)(A*A)) where λ(max) denotes the largest eigenvalue

17
Q

consistent:

A

a norm is consistent if it satisfies ||AB||<=||A||||B|| when AB is defined, the frobenius and all subordinate norms are consistent

18
Q

mixed norm:

A

||A||∞,1:=max(||Ax||∞/||x||1)=max(aij), not consistent

19
Q

spectral radius:

A

ρ(A)=max{|λ|: λ is an eigenvalue of A} (biggest eigenvalue. basically)

20
Q

consistent matrix norms and the spectral radius:

A

for any consistent matrix norm, ρ(A)<=||A||

21
Q

limits and the spectral radius:

A

let A be a square matrix, lim(k->∞)A^k=0 <=> ρ(A)<1

22
Q

gershgorin’s theorem:

A

the eigenvalues of A lie in the union of the n discs in the complex plane Di={z in C:|z-aii|<=(n)Σ(j=1, j!=i)|aij|}