A Matrix with Orthonormal Columns

  • Thread starter Thread starter e(ho0n3
  • Start date Start date
  • Tags Tags
    Columns Matrix
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
5 replies · 16K views
e(ho0n3
Messages
1,349
Reaction score
0
Homework Statement
Let M be an n x n matrix. Prove that the columns of M form an orthonormal set if and only if M-1 = MT.

The attempt at a solution
Let's consider the following 2 x 2 matrix

[tex]\begin{pmatrix} a & b \\ c & d \end{pmatrix}[/tex]

If the inverse equals its transpose, i.e.

[tex]\frac{1}{ad - bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix} = \begin{pmatrix} a & c \\ b & d \end{pmatrix}[/tex]

then

[tex]\begin{align*}<br /> a & = \frac{d}{ad - bc} \\<br /> b & = \frac{-c}{ad - bc} \\<br /> c & = \frac{-b}{ad - bc} \\<br /> d & = \frac{a}{ad - bc}<br /> \end{align*}[/tex]

or rather that ad - bc = 1. Does this mean that ab + cd = 0? Not necessarily: Consider a = 2 and b = c = d = 1 so that ad - bc = 2 - 1 = 1 but ab + cd = 2 + 1 = 3. What gives?

And doeas ab + cd = 0 imply the equations above for a, b, c and d? I think not.

I'm stumped.
 
Physics news on Phys.org
Just multiply out the matrices and think.
 
[tex]\left| ad - bc \right|=1[/tex], but ad - bc may not necessarily be 1. For example, the columns of [tex]\begin{pmatrix} -1 & 0 \\ 0 & 1 \end{pmatrix}[/tex] are orthonormal, but [tex]det \begin{pmatrix} -1 & 0 \\ 0 & 1 \end{pmatrix}=-1.[/tex] I guess it would be easier to work from the relation [tex]\begin{pmatrix} a & b \\ c & d \end{pmatrix} \begin{pmatrix} a & c \\ b & d \end{pmatrix} = \begin{pmatrix} 1 & 0 \\ 0 & 1 \end{pmatrix}[/tex], which follows from the hypothesis that the transpose of M is its inverse. The equations should be simpler to work with. In general, the product of any 2 x 2 matrix M and its transpose [tex]M^T[/tex] may be expressed as : [tex]\begin{pmatrix} a & b \\ c & d \end{pmatrix} \times \begin{pmatrix} a & c \\ b & d \end{pmatrix} = \begin{pmatrix} (r_1,r_1) & (r_1,r_2) \\ (r_2,r_1) & (r_2,r_2) \end{pmatrix}[/tex], where [tex]r_i[/tex] denotes the ith row of M, and [tex](r_i,r_j)[/tex] denotes the scalar product of [tex]r_i[/tex] and [tex]r_j[/tex]. Now equate the latter expression with the identity matrix. This shows that the rows of M are orthonormal, and the argument can be extended to any (n x n) matrix. To show that the columns are also orthonormal, we could use the fact that if [tex]MM^T = I[/tex], then [tex]M^TM=I[/tex], and thence express the product [tex]M^TM[/tex] as we did above.
 
Hi e(ho0n3! :smile:

Why make it so complicated? :rolleyes:

In problems like this, just write out the definition!
e(ho0n3 said:
Let M be an n x n matrix. Prove that the columns of M form an orthonormal set if and only if M-1 = MT.

Hint: MMT = I means, for any i and j, ∑aikajk = Iij.

Put i = j: then … ?

Put i ≠ j: then … ? :smile:
 
e(ho0n3 said:
Homework Statement
Let M be an n x n matrix. Prove that the columns of M form an orthonormal set if and only if M-1 = MT.

The attempt at a solution
Let's consider the following 2 x 2 matrix

[tex]\begin{pmatrix} a & b \\ c & d \end{pmatrix}[/tex]

If the inverse equals its transpose, i.e.

[tex]\frac{1}{ad - bc} \begin{pmatrix} d & -b \\ -c & a \end{pmatrix} = \begin{pmatrix} a & c \\ b & d \end{pmatrix}[/tex]

then

[tex]\begin{align*}<br /> a & = \frac{d}{ad - bc} \\<br /> b & = \frac{-c}{ad - bc} \\<br /> c & = \frac{-b}{ad - bc} \\<br /> d & = \frac{a}{ad - bc}<br /> \end{align*}[/tex]

or rather that ad - bc = 1. Does this mean that ab + cd = 0? Not necessarily: Consider a = 2 and b = c = d = 1 so that ad - bc = 2 - 1 = 1 but ab + cd = 2 + 1 = 3. What gives?

And doeas ab + cd = 0 imply the equations above for a, b, c and d? I think not.

I'm stumped.

I don't understand your point with this example. The inverse of
[tex]A= \left[\begin{array}{cc}2 & 1 \\ 1 & 1\end{array}\right][/tex]
is
[tex]A^{-1}= \left[\begin{array}{cc}2 & -1 \\ -1 & 1\end{array}\right][/tex]
NOT the transpose of A and so has nothing to do with this problem.
 
OK. Looks like I really messed up on this one. Thank you all for the pointers.