Matrix Form of Simultaneous Equations
To express a system of two simultaneous linear equations in matrix form, we use the format AX = B. Here, A is the coefficient matrix, X is the variable matrix, and B is the constant matrix.
Consider the following equations:
- 2x + 3y = 5
- 4x - y = 1
Step 1: Identify the coefficients and constants.
- Coefficients: 2, 3, 4, -1
- Constants: 5, 1
Step 2: Construct matrix A, matrix X, and matrix B.
- A = ( \begin{bmatrix} 2 & 3 \ 4 & -1 \end{bmatrix} )
- X = ( \begin{bmatrix} x \ y \end{bmatrix} )
- B = ( \begin{bmatrix} 5 \ 1 \end{bmatrix} )
Step 3: Write the equation in matrix form:
- ( \begin{bmatrix} 2 & 3 \ 4 & -1 \end{bmatrix} \begin{bmatrix} x \ y \end{bmatrix} = \begin{bmatrix} 5 \ 1 \end{bmatrix} )
This expression clearly shows the relationship between the coefficients, variables, and constants.
Key points to remember
- Identify coefficients and constants from the equations.
- Construct the coefficient matrix A from these coefficients.
- Create the variable matrix X with the unknowns.
- Form the constant matrix B with the constants.
- Write the system in the form AX = B.
Worked example
Express the system: 3x + 2y = 6 and x - y = 4 in matrix form. A = ( \begin{bmatrix} 3 & 2 \ 1 & -1 \end{bmatrix} ), X = ( \begin{bmatrix} x \ y \end{bmatrix} ), B = ( \begin{bmatrix} 6 \ 4 \end{bmatrix} ). Thus, AX = B.