This calculator solves system of three equations with three unknowns (3x3 system). The calculator will use the Gaussian elimination or Cramer's rule to generate a step by step explanation.
This calculator uses Cramer's rule to solve systems of three equations with three unknowns. The Cramer's rule can be stated as follows:
Given the system:
$$ \begin{aligned} a_1x + b_1y + c_1z = d_1 \\ a_2x + b_2y + c_2z = d_2 \\ a_3x + b_3y + c_3z = d_3 \end{aligned} $$with
$$ D = \left|\begin{array}{ccc} a_1 & b_1 & c_1 \\ a_2 & b_2 & c_2 \\ a_3 & b_3 & c_3 \\ \end{array}\right| \ne 0 $$ | $$ D_x = \left|\begin{array}{ccc} d_1 & b_1 & c_1 \\ d_2 & b_2 & c_2 \\ d_3 & b_3 & c_3 \\ \end{array}\right| $$ | $$ D_y = \left|\begin{array}{ccc} a_1 & d_1 & c_1 \\ a_2 & d_2 & c_2 \\ a_3 & d_3 & c_3 \\ \end{array}\right| $$ | $$ D_z = \left|\begin{array}{ccc} a_1 & b_1 & d_1 \\ a_2 & b_2 & d_2 \\ a_3 & b_3 & d_3 \\ \end{array}\right| $$ |
then the solution of this system is:
$$ x = \frac{D_x}{D} $$ | $$ y = \frac{D_y}{D} $$ | $$ z = \frac{D_z}{D} $$ |
Example: Solve the system of equations using Cramer's rule
$$ \begin{aligned} 4x + 5y -2z= & -14 \\ 7x - ~y +2z= & 42 \\ 3x + ~y + 4z= & 28 \\ \end{aligned} $$Solution: First we compute $ D,~ D_x,~ D_y $ and $ D_z $.
Therefore,
Note: You can check the solution using above calculator