Inner Product Flashcards

1
Q

How do we define dot product in R

A

We define dot product in R by:

X.y = sum(XiYi) = X^T *Y

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

What is dot product in C

A

Dot product in C is:

X.y = sum(X(bar)iYi) = X(dagger)Y where x(dagger) is complex conjugate transpose of X

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

What are properties of dot product

A

Properties of dot product are:
Conjugate symmetric .e x.y = (y.x)bar
Linear in 2nd slot, I.e x.(y+Lz) = x.y + Lx.z
X.x >= 0 with equality iff x =0

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

What is definition of inner product

A

Definition of inner product is:

A map VxV to F : (v,w) which has certain properties

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

What are properties of inner product

A

Properties of inner product are:
Conjugate symmetric inner(w,v) = inner(v,w)bar
Linear in 2nd slot inner(u,v+w) = inner(u,v) + inner(u,w), inner(u,Lv) = L(u,v) if F=R then also linear in 1st slot
Positive definite inner(v,v) >= 0 with equality iff v = 0

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

What is an inner product space U

A

Inner product space U is:

U <= V where there is an inner product on U

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

When is a map phi conjugate linear (or anti-linear)

A

A map phi is conjugate linear (or anti-linear) when:

Phi(v+Lw) = phi(v) + L(bar) phi(w)

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

What is a sesquilinear function

A

Sesquilinear function is a function that is conjugate linear in the 1st slot and linear in the 2nd (inner products are sesquilinear)

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

What is norm of v in inner product space V and orthogonal

A

norm of v in inner product space V is:

Root(inner(v,v)) >= 0 and if =0 then orthogonal

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

What is Cauchy-Schwarz inequality

A

Cauchy-Schwarz inequality is:
For v,w in V,
Mod(inner product(v,w)) <= mod(v).mod(w) with equality iff v=0 or w=Lv

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