Find Pivot Positions and Pivot Columns [[0,1,4],[0,1,6/7]]
Problem
Solution
Identify the first non-zero column from the left. The first column consists of all zeros, so it cannot contain a pivot. The first pivot must be in the second column.
Locate the first pivot. The first non-zero entry in the second column is
1 in the first row. This is the first pivot position.Perform row operations to create a zero below the first pivot. Subtract the first row from the second row (
(R_2)−(R_1)→(R_2) .
Simplify the entry in the second row, third column.
Identify the second pivot. In the second row, the first non-zero entry is
−22/7 in the third column. This is the second pivot position.Determine the pivot columns. The pivots are located in the second and third columns of the matrix.
Final Answer
Want more problems? Check here!