Another thread has talked about the purpose of a matrix. Dr. Math roughly summarized it as:
A matrix is just a compact notation, which allows you to specify several linear equations at once without having to write them all out. For example, instead of writing
3x + 4y + 5z = 7
2x - 3y + 6z = 6
2x + 5y - 9z = 11
I can write the same thing more compactly using matrices:
$$ \begin{bmatrix} 3 & 4 & 5\\ 2 & -3 & 6\\ 2 & 5 & -9\\ \end{bmatrix} \begin{bmatrix}x\\ y\\ z\\ \end{bmatrix} = \begin{bmatrix}7\\ 6\\ 11\\ \end{bmatrix} $$
However, it seems that the more obvious way to do it would be:
$$ \begin{array}{ll} \begin{bmatrix} x & y & -z\\ \end{bmatrix} \\ \begin{bmatrix} 3 & 4 & 5\\ 2 & -3 & 6\\ 2 & 5 & -9\\ \end{bmatrix} = \begin{bmatrix}7\\ 6\\ 11\\ \end{bmatrix} \end{array} $$
Why are matrices written in a seemingly more complex way than the alternative?
What's the advantage of doing so?