27 July 2014

Cramer's Rule to Solve a System of 3 Linear Equation with Step by Step Example

How to Solve a System of 3x3 Matrix Equations using Cramer's Rule with Step by Step Example

Cramer's Rule Matrix method can be used to solve systems of linear equations involving two or more variables.

Example:
3x + 2y - z = 3
x - y + 2z = 4
2x + 3y - z = 3

Solution:

Given matrix


xyzb
132-13
21-124
323-13

Write down the main matrix and find its determinant,

xyz
132-1
21-12
323-1
Determinant D = -10

Replace the 1st column of the main matrix with the solution vector and find its determinant

xyz
132-1
24-12
333-1
D1 = -10

Replace the 2nd column of the main matrix with the solution vector and find its determinant

xyz
133-1
2142
323-1
D2 = -10

Replace the 3rd column of the main matrix with the solution vector and find its determinant

xyz
1323
21-14
3233
D3 = -20
x1 = D1 / D = -10 / (-10) = 1
x2 = D2 / D = -10 / (-10) = 1
x3 = D3 / D = -20 / (-10) = 2

Solution:

x = 1
y = 1
z = 2

No comments:

Post a Comment