Explain the process ---STEP 6. Perform pivoting to make all other entries in this column zero. Pivoting is a process of obtaining a 1 in the location of the pivot element, and then making all other entries zeros in that column. So now our job is to make our pivot element a 1 by dividing the entire second row by 2. i.e., new **R₂ = R₂ / 2**. The result follows. Tableau 1: x1 x2 y1 y2 Z 1 1 1 0 0 | 12 1 1/2 0 1/2 0 | 8 -40 -30 0 0 1 | 0 To obtain a zero in the entry first above the pivot element, we multiply the second row by -1 and add it to row 1. i.e., new **R₁ = -1*R₂ + R₁** We get Tableau 2: x1 x2 y1 y2 Z 0 1/2 1 -1/2 0 | 4 y1 1 1/2 0 1/2 0 | 8 x1 -40 -30 0 0 1 | 0 To obtain a zero in the element below the pivot, we multiply the second row by 40 and add it to the last row. i.e., new **R₃ = 40*R₂ + R₃** Tableau 3: x1 x2 y1 y2 Z 0 1/2 1 -1/2 0 | 4 y1 1 1/2 0 1/2 0 | 8 x1 0 -10 0 20 1 | 320 Z We now determine the basic solution associated with this tableau. By arbitrarily choosing x₂ = 0 and y₂ = 0, we obtain x₁=8, y₁=4, and z=320. If we write the augmented matrix, whose left side is a matrix with columns that have one 1 and all other entries zeros, we get the following matrix stating the same thing. Matrix: [ x1 y1 Z | C ] [ 0 1 0 | 4 ] [ 1 0 0 | 8 ] [ 0 0 1 | 320 ]

视频信息