~~DISCUSSION|3x3 Number Discussion~~ ~~TOC~~ // // Lab46 Tutorials Solving 3 x 3 Number Systems An Exploration of Methods \\ Eq1-> 3x - 3y + 2z = 11 \\ Eq2-> 3x + y - 3z = 11 \\ Eq3-> 15x - y - 2z = 0 \\ =====Addition Method===== ====Step 1:===== Use the addition method to remove one of the variables from the equation. To do this, choose two of the equations and multiply each by any given multiple, such that each equation contains opposing (complimentary) coefficients for at least one variable. This step may, in some situations, cause two variables to drop out if you're lucky. In this case, multiplying 3x + y - 3z = 11 by -1 will result in -3x - y + 3z. Then, taking the sum of 3x - 3y + 2z = 11 and -3x - y + 3z, results in -4y + 5z = 0, an equation with one less variable. Eq1 + (-1)Eq2 \\ \\ \begin{array}{3} -1(3x + y - 3z = 11)\\ \underline{+ 3x - 3y + 2z = 11}\\ -4y + 5z = 0 \\ \end{array}\\ At first, it may seem that you're only multiplying one equation by -3 and leaving the other alone, but it's important to note that leaving an equation alone is the same as multiplying it by 1. ====Step 2:==== Use the addition method to remove the same variable from a different set of equations. To do this, choose two different equations and multiply each by a given multiple, such that each equation contains opposing coefficients for at least one variable. In this case, adding the value of 3x - 3y + 2z = 11 multiplied by -5 to 15x - y - 2z = 0 produces a result of 14y - 12z = -55. (-5)Eq1 + Eq3 \\ \begin{array}{3} -5(3x - 3y + 2z = 11)\\ \underline{+ 15x - y - 2z = 0}\\ 14y - 12z = -55\\ .\end{array}\\ ====Step 3 (determinates of a 2x2 matrix)==== Two new equations have been introduced. Use these new equations to find the missing variable. Eq4 -> -4y + 5z = 0 \\ \\ Eq5 -> 14y - 12z = -55 \\ \\ Create 3 2 x 2 martices as follows: *The first row of Matrix D contains the coefficients of z and y from Eq4 *The second row of Matrix D contains the coefficients of z and y from Eq5 *The first row of Matrix D_z contains the constant value and the coefficient of y from Eq4 *The second row of Matrix D_z contains the constant value and the coefficient of y from Eq5 *The first row of Matrix D_y contains the coefficient of z and the constant value from Eq4 *The second row of Matrix D_y contains the coefficient of z and the constant value from Eq5 \\ \\ y_1=-4 , y_2=14 \\ \\ z_1=5 , z_2=-12 \\ \\ C_1=0 , C_2=-55 \\ \\ D = \left| \begin{array}{ccc} y_1 ... z_1\\ \vdots \ddots \vdots\\ y_2 ... z_2 \end{array} \right| D_y = \left| \begin{array}{ccc} C_1 ... z_1\\ \vdots \ddots \vdots\\ C_2 ... z_2\end{array} \right| \to y = \frac{D_y}{D} \to y = \frac{(0)(-12)-(-55)(5)}{(-4)(-12)-(14)(5)} \to y = \frac{25}{2} D_z = \left| \begin{array}{ccc} y_1 ... C_1\\ \vdots \ddots \vdots\\ y_2 ... C_2\end{array} \right| \to z = \frac{D_z}{D} \to y = \frac{(-4)(-55)-(14)(0)}{(-4)(-12)-(14)(5)} \to z = -10 ====Step 4: Solve it==== Now that y and z have been determined, place these values into one of the initial equations to find the value of x . \\ y = \frac{25}{2} \\ \\ z = -10 \\ \\ 3x - 3y + 2z = 11 \to 3x - 3(\frac{25}{2}) + 2(-10) = 11 \to x = \frac{3(\frac{25}{2}) + 2(-10) - 11}{3} \\ \\ x = \frac{-13}{6} =====Determinants of the Third Order===== General Form a_1x + b_1y + c_1z = d_1 \\ a_2x + b_2y + c_2z = d_2 \\ a_3x + b_3y + c_3z = d_3 Equations given in general form can be solved using determinants with the following formulas: \\ \\ \\ x= \frac{d_1b_2c_2 + d_3b_1c_2 + d_2b_3c_1 - d_3b_2c_1 - d_1b_3c_2 - d_2b_1c_3}{a_1b_2c_3 + a_3b_1c_2 + a_2b_3c_1 - a_3b_2c_1 - a_1b_2c_3 - a_2b_1c_3} \\ \\ y= \frac{a_1d_2c_3 + a_3d_1c_2 + a_2d_3c_1 - a_3d_2c_1 - a_1d_3c_2 - a_2d_1c_3}{a_1b_2c_3 + a_3b_1c_2 + a_2b_3c_1 - a_3b_2c_1 - a_1b_2c_3 - a_2b_1c_3} \\ \\ z= \frac{a_1b_2d_3 + a_3b_1d_2 + a_2b_3d_1 - a_3b_2d_1 - a_1b_3d_2 - a_2b_1d_3}{a_1b_2c_3 + a_3b_1c_2 + a_2b_3c_1 - a_3b_2c_1 - a_1b_2c_3 - a_2b_1c_3} \\