Determining Pivot Columns in a Matrix - Fred's Question

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
 
For row echelon form, the pivot columns where there is a non-zero value to the right of leading zeros.

In the example you give, the pivot columns would be 1,2,3, and 5.
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top