Find the Null Space
Problem
Solution
Write the augmented matrix for the homogeneous system
A*x=0 to find the vectorsx such thatA*x=0
Swap rows to place a
1 in the top-left pivot position.
Eliminate entries below the first pivot by performing
(R_2)←(R_2)+3*(R_1) and(R_3)←(R_3)−2*(R_1)
Normalize the second row by performing
(R_2)←1/5*(R_2)
Eliminate the entry below the second pivot by performing
(R_3)←(R_3)−(R_2)
Reduce to Reduced Row Echelon Form (RREF) by performing
(R_1)←(R_1)−2*(R_2)
Identify free variables by looking for columns without pivots. The pivots are in columns 1 and 3, so
(x_2) (x_4) and(x_5) are free variables.
Express the solution vector in terms of the free variables
(x_2),(x_4),(x_5)
Final Answer
Want more problems? Check here!