Can anyone explain me the product of a matrix by its transpose?

78 Views Asked by At

Please solve it and explain it to me

$$ A=\begin{bmatrix} 1 & 0\\ -1 & 1\\ \end{bmatrix},\quad AA^T = \ ? $$

3

There are 3 best solutions below

0
On

$$A=\begin{bmatrix} 1 & 0\\ -1 & 1\\ \end{bmatrix}, \qquad A^T=\begin{bmatrix} 1 & -1\\ 0 & 1\\ \end{bmatrix}$$

Then $AA^T$ can be calculated by simply multiplying each row by each column

1
On

You have $A=\begin{bmatrix} 1 & 0\\ -1 & 1\\ \end{bmatrix}$

$A^T = \begin{bmatrix}1 &&-1\\0&&1\end{bmatrix}$

$A\cdot A^T=\begin{bmatrix} 1 & 0\\ -1 & 1\\ \end{bmatrix}\cdot \begin{bmatrix}1 &&-1\\0&&1\end{bmatrix}$

$ = \begin{bmatrix}1&&-1\\-1&&2\end{bmatrix}$

0
On

Try using the following: $$ \begin{bmatrix} a_{11} &a_{12} \\ a_{21} &a_{22} \end{bmatrix} \begin{bmatrix} b_{11} &b_{12} \\ b_{21} &b_{22} \end{bmatrix} = \begin{bmatrix} a_{11}b_{11} + a_{12}b_{21} &a_{11}b_{12} + a_{12}b_{22} \\ a_{21}b_{11} + a_{22}b_{21} &a_{21}b_{12} + a_{22}b_{22} \end{bmatrix} $$