
QZ P. answered 03/15/19
Linear Algebra
C = A • T
where T = Matrix {{1, -1, 0, 0, 0}, {0,1, 0, 0, 0}, {0, 0,1, 0, 0}, {0, 0, 0, 1, 0}, {0, 0, 0, 0,1}}
Given X as solution for A X = 0 ,the Solution for C X' = 0 will be X' = T-1 X since
C X' = C (T-1X) = A•T (T-1X) = A X = 0
T-1 = Matrix {{1, 1, 0, 0, 0}, {0,1, 0, 0, 0}, {0, 0,1, 0, 0},{0, 0, 0, 1, 0}, {0, 0, 0, 0,1}}.
T is a 5x5 matrix. Only the top left 2x2 sub matrix of T is non-diagonal and its inverse can be quickly found using the 2x2 matrix inversion. The remaining lower right 3x3 sub portion of T are identity matrix and the inverse is also identity matrix.
X' solution can be obtained
T-1 (3,1,4,0,5) = (4,1,4,0,5)
T-1 (2,0,2,1,2) = (2,0,2,1,2)
New basis are (4,1,4,0,5) and (2,0,2,1,2)