Property
In order to solve systems of equations in three variables, known as three-by-three systems, the primary tool we will be using is called Gaussian elimination. The goal is to eliminate one variable at a time to achieve upper triangular form. A system in upper triangular form looks like the following:
Ax+By+CzEy+FzHzβ=D=G=Kβ The third equation can be solved for z, and then we back-substitute to find y and x. To write the system in upper triangular form, we can perform the following operations:
- Interchange the order of any two equations.
- Multiply both sides of an equation by a nonzero constant.
- Add a nonzero multiple of one equation to another equation.
The solution set to a three-by-three system is an ordered triple (x,y,z).
Examples
- To solve the system x+y+z=6, 2xβy+z=3, and x+yβz=0, first add equation (1) and (2) to get 3x+2z=9. Add equation (1) and (3) to get 2x=6, so x=3. Substitute x=3 into 3x+2z=9 to get z=0. Finally, substitute x=3 and z=0 into x+y+z=6 to find y=3. The solution is (3,0,3).
- Find the solution for the system xβy+2z=7, y+z=5, and 3z=9. Start with the last equation to find z=3. Back-substitute z=3 into the second equation to get y+3=5, so y=2. Finally, substitute y=2 and z=3 into the first equation: xβ2+2(3)=7, which gives x=3. The solution is (3,2,3).