Pivotal Condensation for determining Determinant

courtrigrad
Messages
1,236
Reaction score
2
If A =\left(\begin{array}{ccc}<br /> 1 &amp; 2 &amp; 3 \\<br /> -1 &amp; 2 &amp; 1 \\<br /> 4 &amp; 1 &amp; -1 \\<br /> \end{array}\right)

and we want to zero the entries in the second row of A (i.e. make it 0 0 1 ).

How do we get A =\left(\begin{array}{ccc}<br /> 4 &amp; -4 &amp; 3 \\<br /> 0 &amp; 0 &amp; 1 \\<br /> 3 &amp; 3 &amp; -1 \\<br /> \end{array}\right)?
I have tried using elementary row operations:

A =\left(\begin{array}{ccc}<br /> 1 &amp; 2 &amp; 3 \\<br /> -1 &amp; 2 &amp; 1 \\<br /> 4 &amp; 1 &amp; -1 \\<br /> \end{array}\right)

A =\left(\begin{array}{ccc}<br /> 1 &amp; 2 &amp; 3 \\<br /> 0 &amp; 4 &amp; 4 \\<br /> 4 &amp; 1 &amp; -1 \\<br /> \end{array}\right)

But then it just gets more complicated.

Any help is appreciated.

Thanks
 
Physics news on Phys.org
The fact that scalar multiplication of a row by a constant multiplies the determinant by that constant might be useful.
 
ah ok. thanks for your help. But you don't know the determinant. Thats what you are trying to find.
 
Last edited:
Does A =\left(\begin{array}{ccc}<br /> 4 &amp; -4 &amp; 3 \\<br /> 0 &amp; 0 &amp; 1 \\<br /> 3 &amp; 3 &amp; -1 \\<br /> \end{array}\right)

follow from A =\left(\begin{array}{ccc}<br /> -4 &amp; -4 &amp; 0 \\<br /> -1 &amp; 2 &amp; 1 \\<br /> 3 &amp; 3 &amp; 0 \\<br /> \end{array}\right)

Because I used a_{23} as the pivot.
 
In what sense do you mean "="? They're obviously not the same matrix.
 
The determinants of those matrices are equal.
 
Be more careful with your notation. Are you trying to show that all the matrices you've called "A" have the same determinant?
 
Then please don't write "= ".

Yes, it is certainly true that
A =\left(\begin{array}{ccc} 1 &amp; 2 &amp; 3 \\ -1 &amp; 2 &amp; 1 \\ 4 &amp; 1 &amp; -1 \\ \end{array}\right)

gives immediately
\left(\begin{array}{ccc} 1 &amp; 2 &amp; 3 \\ 0 &amp; 4 &amp; 4 \\ 4 &amp; 1 &amp; -1 \\ \end{array}\right)

By just adding the first row to the second row.
Now subtract 4 times the first row from the third:
\left(\begin{array}{ccc} 1 &amp; 2 &amp; 3 \\ 0 &amp; 4 &amp; 4 \\ 0 &amp; -7 &amp; -13 \\ \end{array}\right)
The only "complicated" part is that now we will have to add 7/4 the second row to the third". -13+ (7/4)(4)= -13+ 7= -6

What is the reduced matrix now and what is its determinant?

(I don't know how you would get
\left(\begin{array}{ccc} 4 &amp; -4 &amp; 3 \\ 0 &amp; 0 &amp; 1 \\ 3 &amp; 3 &amp; -1 \\ \end{array}\right)
I didn't try to get that since I can't see why you would want to!)
 
Since you're insisting on notation, you should use '... \left| ... \right| ...' in your source. The determinant of a matrix A can't equal the matrix A. But you made a typo, probably.
 
  • #10
\det{A} = \left| \begin{array} {ccc} 4 &amp; -4 &amp; 3 \\ 0 &amp; 0 &amp; 1 \\ 3 &amp; 3 &amp; -1 \\ \end{array} \right|

look at the code courtri
 
  • #11
Yeah that's what I did. Let me write in better notation:

A =\begin{bmatrix}<br /> 1 &amp; 2 &amp; 3 \\<br /> -1 &amp; 2 &amp; 1 \\<br /> 4 &amp; 1 &amp; -1 \\<br /> \end{bmatrix}

how do we get

\det{A} = \left| \begin{array} {ccc} 4 &amp; -4 &amp; 3 \\ 0 &amp; 0 &amp; 1 \\ 3 &amp; 3 &amp; -1 \\ \end{array} \right|
If

A =\begin{bmatrix}<br /> 1 &amp; 2 &amp; 3 \\<br /> -1 &amp; 2 &amp; 1 \\<br /> 4 &amp; 1 &amp; -1 \\<br /> \end{bmatrix}

I see how we get

\det{A} = \left| \begin{array} {ccc} 4 &amp; -4 &amp; 0 \\ -1 &amp; 2 &amp; 1 \\ 3 &amp; 3 &amp; 0 \\ \end{array} \right|

The difference between the two is that in the first determinant we zeroed the 3rd column, while in the second one we zeroed the second row (i.e. a_{21} is the pivot)
 
  • #12
courtrigrad said:
Yeah that's what I did. Let me write in better notation:

A =\begin{bmatrix}<br /> 1 &amp; 2 &amp; 3 \\<br /> -1 &amp; 2 &amp; 1 \\<br /> 4 &amp; 1 &amp; -1 \\<br /> \end{bmatrix}

how do we get

\det{A} = \left| \begin{array} {ccc} 4 &amp; -4 &amp; 3 \\ 0 &amp; 0 &amp; 1 \\ 3 &amp; 3 &amp; -1 \\ \end{array} \right|

What you wrote implies \begin{bmatrix}1 &amp; 2 &amp; 3 \\ -1 &amp; 2 &amp; 1 \\ 4 &amp; 1 &amp; -1 \\ \end{bmatrix}=\begin{bmatrix}4 &amp; -4 &amp; 3 \\ 0 &amp; 0 &amp; 1 \\ 3 &amp; 3 &amp; -1 \\ \end{bmatrix}. You might rather want to call the matrices on which elementary transformations have been applied as A', A'' etc. Further on, if you wish make the matrix A such that it contains '0, 0, something' in a row, you should look at column operations and how they affect the determinant.
 
  • #13
courtrigrad said:
Yeah that's what I did. Let me write in better notation:

A =\begin{bmatrix}<br /> 1 &amp; 2 &amp; 3 \\<br /> -1 &amp; 2 &amp; 1 \\<br /> 4 &amp; 1 &amp; -1 \\<br /> \end{bmatrix}

how do we get

\det{A} = \left| \begin{array} {ccc} 4 &amp; -4 &amp; 3 \\ 0 &amp; 0 &amp; 1 \\ 3 &amp; 3 &amp; -1 \\ \end{array} \right|
If

A =\begin{bmatrix}<br /> 1 &amp; 2 &amp; 3 \\<br /> -1 &amp; 2 &amp; 1 \\<br /> 4 &amp; 1 &amp; -1 \\<br /> \end{bmatrix}

I see how we get

\det{A} = \left| \begin{array} {ccc} 4 &amp; -4 &amp; 0 \\ -1 &amp; 2 &amp; 1 \\ 3 &amp; 3 &amp; 0 \\ \end{array} \right|

The difference between the two is that in the first determinant we zeroed the 3rd column, while in the second one we zeroed the second row (i.e. a_{21} is the pivot)

WHY "zero the 3rd column"? The point is to get the "echelon" form with zeroes below the main diagonal. Courtrigrad, you said before that you had got to
\left(\begin{array}{ccc} 1 &amp; 2 &amp; 3 \\ 0 &amp; 4 &amp; 4 \\ 0 &amp; -7 &amp; -13 \\ \end{array}\right)

and then had added 7/4 the second row to the third. What did you get?
I pointed out before that "-13+ (7/4)(4)= -13+ 7= -6" and that's the only calculation you need to do. Doesn't that give you the echelon form? Can't you read off the determinant from that?
 
  • #14
Yes, but that is using the "triangular method" to find the determinant. I am supposed to use pivotal condensation. And this is an example from a book. I already know what the determinant is. Just trying to see how the book came to that conclusion in the example.
 
  • #15
courtrigrad said:
Yes, but that is using the "triangular method" to find the determinant. I am supposed to use pivotal condensation. And this is an example from a book. I already know what the determinant is. Just trying to see how the book came to that conclusion in the example.

'...Important properties of the determinant include the following, which include invariance under elementary row and column operations.

1. Switching two rows or columns changes the sign.

2. Scalars can be factored out from rows and columns.

3. Multiples of rows and columns can be added together without changing the determinant's value.

4. Scalar multiplication of a row by a constant c multiplies the determinant by c.

5. A determinant with a row or column of zeros has value 0.

6. Any determinant with two rows or columns equal has value 0.
...' (quote from Mathworld)

Using these properties should help.
 
  • #16
I see what they did. They did column operations instead of row operations, because \det A^{T} = \det A
 
Back
Top