What I'm asking given a matrix
A= [[1,2,2,0,1,1][0,i,0,0,1,2][0,0,0,0,i,0][0,0,1,2,2i]]
Which in echelonform gives
A ~[[1,2,2,0,1,1][0,1,0,0,-i,-2i][0,0,1,2,0,2i][0,0,0,0,1,0]]
My question is the pivot column of this matrix aren't they
column 1,2,5,6 ??
Since the...