Find Reduced Row Echelon Form [[x,cos(3x),sin(4x)],[-2,1,3],[1,1,2]]
Problem
Solution
Swap rows to place a leading 1 in the first row. We swap
(R_1) and(R_3)
Eliminate the first entry of the second row by performing
(R_2)→(R_2)+2*(R_1)
Eliminate the first entry of the third row by performing
(R_3)→(R_3)−x*(R_1)
Normalize the second row by performing
(R_2)→1/3*(R_2)
Eliminate the second entry of the first row by performing
(R_1)→(R_1)−(R_2)
Eliminate the second entry of the third row by performing
(R_3)→(R_3)−(cos(3*x)−x)*(R_2)
Simplify the expression in the third row, third column.
Normalize the third row by dividing by the non-zero expression (assuming it is not zero) to get a leading 1.
Eliminate the third column entries in the first and second rows using
(R_1)→(R_1)+1/3*(R_3) and(R_2)→(R_2)−7/3*(R_3)
Final Answer
Want more problems? Check here!