0

if we only know $Q^TQ = I$, can we get $QQ^T=I$?

where $I$ is the identify matrix, $Q \in R^{m \times m}$

jason
  • 829

3 Answers3

4

Let's say $Q$ is a matrix of size $m\times n$. Then $Q^TQ=I$ implies $QQ^T=I$ iff $Q$ is a square matrix. If $Q$ is a square matrix then I assume you know $Q^TQ=I$ implies $Q$ is invertible and $Q^T=Q^{-1}$. Hence $I=QQ^{-1}=QQ^T$. As for the other direction suppose $Q^TQ=I_n$ and $QQ^T=I_m$. You can check that for any two matrices $A$ and $B$ (not necessary square!) that can be multiplied from both sides $tr(AB)=tr(BA)$. So that way we get:

$m=tr(I_m)=tr(QQ^T)=tr(Q^TQ)=tr(I_n)=n$

So $m=n$ and $Q$ is a square matrix.

Mark
  • 39,605
1

Yes in the case of square matrices. If $Q^TQ = I$ then $Q^{-1} = Q^T$ so $QQ^T = QQ^{-1} = I$.

Essentially this works because for square matrices a left hand inverse is a right hand inverse.

Mohit
  • 1,154
0

Yes. If $Q$ is orthogonal matrix i.e. $Q^TQ = I$ then it also follows that $ Q^T = Q^{-1}$. Putting it together we have:

$$\begin{align} Q^TQ = I = QQ^{-1} = QQ^T \end{align}$$

minggli
  • 25