I'm sorry if this is a stupid question but I just can't find the answer I need. I have the following matrix:-
A |6 6 0|
|9 0 0|
Each column represents co-ordinates on a grid. Now to find the inverse of "A" I need to create this into a 3x3 square matrix, to do this I add 001 as the 3rd row...
B |6 6 0|
|9 0 0|
|0 0 1|
I do this simply because it is what I have seen in the online examples.
My question is, what is the method to calculate/add the 3rd row of a 2x3 matrix in this situation?