1

in matrix multiplication if $AB=I$, do $A$ and $B$ need to be inverses of each other? Can $BA$ not equal I for the same two matrices?

pink floyd
  • 1,274
laura
  • 21

2 Answers2

0

IF Both A and B are n by n matrices then the following holds: $$AB=I_n=BA$$

CivilSigma
  • 1,047
0

Using the multiplicative property of determinants $detAB=detAdetB=detI$

$detI\neq 0 \implies detA\neq 0 $ and $detB\neq0$

As the determinants for $A$ and $B$ are non zero then they are not singular hence inverse exist.

$AB=I$ now multiply on the right by $B^{-1}$

$\begin{align} ABB^{-1}&=IB^{-1}\\ AI&=B^{-1}\\ A&=B^{-1} \end{align}$

A similar thing can be done by multiplying by $A^{-1}$ on the left to give $B=A^{-1}$

Karl
  • 4,693