Determining Pivot Columns in a Matrix - Fred's Question

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 3K views
mathboy20
Messages
27
Reaction score
0
Hi

I got simple question. How is it that determain if a column in matrix is a pivot column?

Sincerely

Fred
 
Physics news on Phys.org
mathboy20 said:
I got simple question. How is it that determain if a column in matrix is a pivot column?

Are you asking about gaussian reduction, the simplex method, or something else?
 
NateTG said:
Are you asking about gaussian reduction, the simplex method, or something else?

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 definition a pivot position is is the column where there is a non-zero entry above a zero entry??

Best Regards
Mathboy20