Simplify the Matrix matriz [[1,1],[0,2]]
Problem
Solution
Identify the matrix provided. The matrix is a
2×2 upper triangular matrix.Determine the objective. Since the matrix is already in row-echelon form and its entries are simplified integers, the most common simplification for a square matrix is to find its characteristic properties or its reduced row-echelon form.
Calculate the reduced row-echelon form (RREF). To reach RREF, the leading entries (pivots) must be 1 and all entries above and below pivots must be 0.
Divide the second row by 2 to make the second pivot equal to 1.
Subtract the second row from the first row to create a zero above the second pivot.
Final Answer
Want more problems? Check here!