Find the Nullity [[1,2,2,3],[-1,-3,3,2],[2,-3,4,6]]
Problem
Solution
Set up the matrix
A and prepare to find its rank using Gaussian elimination.
Eliminate the entries in the first column below the first pivot by adding row 1 to row 2 (
(R_2)+(R_1)→(R_2) and subtracting twice row 1 from row 3 ((R_3)−2*(R_1)→(R_3) .
Eliminate the entry in the second column below the second pivot by subtracting 7 times row 2 from row 3 (
(R_3)−7*(R_2)→(R_3) .
Identify the rank of the matrix by counting the number of non-zero rows in the row echelon form.
Apply the Rank-Nullity Theorem, which states that for an
m×n matrix,rank(A)+nullity(A)=n wheren is the number of columns.
Solve for the nullity.
Final Answer
Want more problems? Check here!