Find the word definition

Wikipedia
Augmented matrix

In linear algebra, an augmented matrix is a matrix obtained by appending the columns of two given matrices, usually for the purpose of performing the same elementary row operations on each of the given matrices.

Given the matrices A and B, where

$A = \begin{bmatrix} 1 & 3 & 2 \\ 2 & 0 & 1 \\ 5 & 2 & 2 \end{bmatrix} , \quad B = \begin{bmatrix} 4 \\ 3 \\ 1 \end{bmatrix},$

the augmented matrix (A|B) is written as

$(A|B)= \left[\begin{array}{ccc|c} 1 & 3 & 2 & 4 \\ 2 & 0 & 1 & 3 \\ 5 & 2 & 2 & 1 \end{array}\right].$

This is useful when solving systems of linear equations.

For a given number of unknowns, the number of solutions to a system of linear equations depends only on the rank of the matrix representing the system and the rank of the corresponding augmented matrix. Specifically, according to the Rouché–Capelli theorem, any system of linear equations is inconsistent (has no solutions) if the rank of the augmented matrix is greater than the rank of the coefficient matrix; if, on the other hand, the ranks of these two matrices are equal, the system must have at least one solution. The solution is unique if and only if the rank equals the number of variables. Otherwise the general solution has k free parameters where k is the difference between the number of variables and the rank; hence in such a case there are an infinitude of solutions.

An augmented matrix may also be used to find the inverse of a matrix by combining it with the identity matrix.