A = [[1, 2, -1, 2],
[3, 5, 0, 4],
[1, 1, 2, 0]]
Row reduce A:
R1 = A[0]
R2 = A[1] - 3*A[0] = [0, -1, 3, -2]
R3 = A[2] - A[0] = [0, -1, 3, -2]
Row echelon form of A:
[[1, 2, -1, 2],
[0, -1, 3, -2],
[0, 0, 0, 0]]
Row space basis: {[1, 2, -1, 2],
Show more…