Locate mistake in matrix inverse

198 Views Asked by At

I recently asked a question about RREF and have incorporated the helpful responses into my problem. I get the same answer every time but it is incorrect.

enter image description here

Does anyone know what I am doing wrong?

Thanks again.

2

There are 2 best solutions below

0
On BEST ANSWER

You made a mistake at

$R_1 + R_3 \to R_3,$

the last row should be $\begin{bmatrix} 0 & 1 & 4 & 1 & 1 & 1 \end{bmatrix}$

Remark:

  • $R_i + cR_j \to R_i$ is an elementary step.
  • $R_j + cR_i \to R_i$ is actually two steps, it consists of $R_i + \frac1cR_j \to R_i$ and $cR_i$.
  • That is where you store the result matters.
  • While we can't see the difference now, it plays a role when you compute determinant.
0
On

You make a mistake here: $$R_1-R_2\to R_1$$ because in that line $R_1-R_2$ is $$1\quad -1\quad 0\quad\mid\quad 1\quad -4\quad 12.$$