4.5.22 · D5Linear Algebra (Full)

Question bank — Properties — row operations, multiplicativity

1,406 words6 min readBack to topic

Quick symbol reminder so nothing below is used unexplained:

  • = the signed volume-scaling factor of the map (how much the unit cube's volume grows, negative if orientation flips). See Volume, Orientation & the Determinant.
  • A matrix is (square, rows and columns).
  • Elementary matrix = the identity with one row operation applied; multiplying by it is that operation. See Elementary Matrices.
  • Singular = not invertible = . See Invertibility & Singular Matrices.

True or false — justify

TF1. Swapping two rows twice returns the determinant to its original value.
True. Each swap multiplies by , and , so two swaps undo each other.
TF2. Scaling a row by is a legal elementary operation.
False. The scale operation requires ; scaling by makes a zero row (and cannot be undone), forcing — it destroys information rather than transforming it.
TF3. for all square .
False. Multilinearity is linear in one row at a time, not in the whole matrix. Counterexample: gives .
TF4. for an matrix.
False. Scaling by scales all rows, so ; only for do these agree.
TF5. If then for every of matching size.
True. By multiplicativity ; a singular map collapses volume no matter what follows.
TF6. Row operations change the determinant, so column operations must too.
True, but they follow the same rules — because , and transposing turns rows into columns. A column swap flips sign, a column scale multiplies by , etc.
TF7. .
False. From we get , the reciprocal, not the negative.
TF8. A replacement can turn a singular matrix into an invertible one.
False. Replacement leaves unchanged, so if was it stays — singularity is invariant under replacement (see Gaussian Elimination & Row Echelon Form).
TF9. Every matrix can be written as a product of elementary matrices.
False. Only invertible matrices factor this way; a singular matrix cannot, since a product of elementaries always has nonzero determinant.
TF10. If has a row of all zeros, then .
True. Scaling that zero row by any leaves it unchanged, yet must multiply by ; the only number satisfying for all is .

Spot the error

SE1. "I scaled to make the pivot 1, reduced to triangular, multiplied the diagonal, and that's ."
Error: scaling by multiplied by , so the final diagonal product is ; you must multiply back by 2 to recover .
SE2. " because you can pull the scalar out of the matrix."
Error: you can pull a scalar out of one row, but scales every one of the rows, giving one factor of 2 each: .
SE3. " changed the entries, so the determinant changed too."
Error: the added piece has two equal rows, so it is ; the determinant is genuinely unchanged even though the matrix looks different.
SE4. " is singular and is invertible, so might be invertible."
Error: , so is singular; an invertible cannot rescue a collapse already caused by .
SE5. "I did one swap and one replacement, so I multiply my triangular answer by ."
Error: replacements contribute a factor of , so only the swap matters — the correct factor is , not .
SE6. "."
Error: powers of a matrix compose the map three times, so scalings multiply: , not .
SE7. " for a replacement matrix because it isn't the identity."
Error: a replacement elementary matrix is triangular with all 1's on the diagonal, so — being unequal to does not make a determinant vanish.

Why questions

WHY1. Why does swapping two rows flip the sign, without adding a new axiom?
Feeding equal rows into both slots gives ; expanding by linearity leaves , so — the sign flip is forced by "equal rows give 0" plus multilinearity. See Multilinear Alternating Forms.
WHY2. Why is replacement the "safe" operation for Gaussian elimination?
Because it leaves exactly unchanged, you can clear out entries to reach echelon form without ever having to track a correction factor.
WHY3. Why is the determinant of a triangular matrix just the product of the diagonal?
Cofactor expansion down the first column leaves only one surviving nonzero term at each stage, recursively multiplying the diagonal entries together. See Determinant — Definition (cofactor / Leibniz).
WHY4. Why does multiplicativity hold geometrically?
scales volume by , then scales that result by ; composing the two maps multiplies the scaling factors, and sign flips (orientation) multiply the same way.
WHY5. Why does the algebraic proof of multiplicativity split into invertible and singular cases?
Only invertible factor as a product of elementaries ; the singular case needs a separate argument, using that and inherits the rank deficiency so too.
WHY6. Why does let us apply every row rule to columns?
A column operation on is a row operation on ; since transposing does not change the determinant, the effect on is identical.
WHY7. Why must and why does this prove invertible matrices have nonzero determinant?
From , the product is , so neither factor can be — hence is necessary for an inverse to exist.

Edge cases

EC1. What is of the zero matrix, and why?
==== — every row is a zero row, and a zero row forces (scaling it by can't change it yet must multiply by ).
EC2. If two rows of are identical, what is ?
==== directly by the alternating property — the defining rule of the determinant is that equal rows give .
EC3. If one row is a scalar multiple of another, is zero?
Yes. A replacement (unchanging ) can make row all zeros, and a zero row gives .
EC4. For a matrix , does still hold?
Yes, trivially — with it reads , the one case where is correct.
EC5. What is of a permutation matrix that swaps rows an odd number of times?
==== — each of the odd swaps multiplies the identity's determinant by , netting .
EC6. If is a real matrix with , what does the sign mean geometrically?
The map reverses orientation (it flips the shape like a mirror) while scaling volume by . See Volume, Orientation & the Determinant.
EC7. If and ranges over the eigenvalues, what constraint does that place on them?
Their product is , since ; this is why volume-preserving maps have eigenvalues multiplying to . See Eigenvalues — det as product of eigenvalues.
EC8. Can a replacement operation ever change the determinant if you accidentally use (adding a multiple of a row to itself)?
The rule requires ; adding to itself is really a scaling , which multiplies by — so watch the index.