I have this matrix A:
| 1 0 0 0 |
| 1 1 0 0 |
| 1 2 1 0 |
| 2 3 2 1 |
If I multiply the first row with (-1), and add it up to the second row, we have the matrix B:
| 1 0 0 0 |
| 0 1 0 0 |
| 1 2 1 0 |
| 2 3 2 1 |
And E is an unknown matrix where:
E*A = B
What is the value of the matrix E?
Basically, I'm trying to figure out the matrix which is equivalent to a computation in a matrix. I know that an option is to compute the inverse of A. However, I'm looking for a solution without inverse (as it's in the original problem I provided in the link below).
Originally this is the problem 2.2 from Algebra MIT OCW 18.06SC but simplified, as I'm struggling with this precise step.