As used in linear algebra, an augmented matrix is used to represent the
coefficients and the solution vector of each equation set. For the set of equations \begin{align} x + 2y + 3z &= 0 \\ 3x + 4y + 7z &= 2 \\ 6x + 5y + 9z &= 11 \end{align} the coefficients and constant terms give the matrices A = \begin{bmatrix} 1 & 2 & 3 \\ 3 & 4 & 7 \\ 6 & 5 & 9 \end{bmatrix} , \quad B = \begin{bmatrix} 0 \\ 2 \\ 11 \end{bmatrix}, and hence give the augmented matrix (A|B) = \left[\begin{array}{ccc|c} 1 & 2 & 3 & 0 \\ 3 & 4 & 7 & 2 \\ 6 & 5 & 9 & 11 \end{array}\right]. Note that the rank of the coefficient matrix, which is 3, equals the rank of the augmented matrix, so at least one solution exists; and since this rank equals the number of unknowns, there is exactly one solution. To obtain the solution, row operations can be performed on the augmented matrix to obtain the identity matrix on the left side, yielding \left[\begin{array}{ccc|r} 1 & 0 & 0 & 4 \\ 0 & 1 & 0 & 1 \\ 0 & 0 & 1 & -2 \\ \end{array}\right], so the solution of the system is . ==References==