Question
State all 10 properties of determinants and show how each property helps simplify determinant evaluation. Demonstrate with a determinant.
(CBSE 12 Board + JEE Main pattern)
Solution — Step by Step
Here is the complete list. We will use a determinant of matrix of order :
| # | Property | What it means |
|---|---|---|
| 1 | Transpose | $ |
| 2 | Row swap | Swapping two rows changes sign: |
| 3 | Identical rows | If two rows are identical, |
| 4 | Scalar multiple of row | Factor out from one row: |
| 5 | Sum property | If a row is sum of two sets of elements, splits into sum of two determinants |
| 6 | Row operation (add multiple) | does not change |
| 7 | All zeros in a row | |
| 8 | Proportional rows | If , then |
| 9 | Scalar multiplication of matrix | $ |
| 10 | Product property | $ |
Consider:
Apply and (Property 6 — value unchanged):
Now (proportional rows — Property 8), so .
Suppose we need where is and .
By Property 9:
Students who write lose marks every year. The power is , not 1.
flowchart TD
A["Given a Determinant"] --> B{"Any row/col all zeros?"}
B -- Yes --> Z["D = 0"]
B -- No --> C{"Two rows identical or proportional?"}
C -- Yes --> Z
C -- No --> D{"Can we simplify using R_i → R_i + kR_j?"}
D -- Yes --> E["Apply row operations (D unchanged)"]
E --> F{"Upper triangular form?"}
F -- Yes --> G["D = product of diagonal"]
F -- No --> D
D -- No --> H["Expand along row/col with most zeros"]
H --> I["Compute cofactors"]
I --> J["Final Answer"]
G --> J
Why This Works
Determinants encode the “signed volume” of the parallelepiped formed by row (or column) vectors. When two rows are identical, the parallelepiped collapses to a lower dimension — volume becomes zero. When we swap two rows, the orientation flips — hence the sign change.
Row operations of the type correspond to shearing, which preserves volume. That is why this operation does not change the determinant value, and it is our primary weapon for simplification.
The scalar multiplication property comes from the fact that each of the rows gets multiplied by , and Property 4 says each such multiplication pulls out one factor of .
Alternative Method
For small determinants, Sarrus’ Rule (only for ) gives a quick computation without row operations:
But for JEE, the row-reduction approach is faster and less error-prone for larger or parameter-heavy determinants.
In JEE Main, most determinant questions can be solved in under 2 minutes if you apply Property 6 first to create zeros, then expand along the row/column with the most zeros. Practice making the first column all zeros except one entry.
Common Mistake
The number one error: confusing with . For a matrix, , not . The exponent equals the order of the matrix. This has appeared as a direct MCQ in CBSE boards and JEE Main multiple times — and students still get it wrong under exam pressure.