Exam Prep13 min read

JEE Determinants: 30 Practice Questions with Solutions

By the QUFF Team

The difference between a thirty-second determinant and a three-minute one is almost never arithmetic ability - it is whether you simplified first. JEE sets determinants with a common factor hiding in a row, or with rows that become identical after one subtraction, precisely because students who expand immediately do six multiplications where one row operation would have collapsed the whole thing to zero.

A pie chart, a rising bar graph, a lightbulb and gears on a light background, representing mathematical analysis

Why simplification beats expansion

A 3 × 3 determinant expanded directly needs three 2 × 2 determinants, each with two multiplications - twelve operations plus sign bookkeeping. A single row operation that produces two zeros in a column reduces that to one 2 × 2 determinant.

More sharply: a determinant whose rows sum to a common value, or whose second row is twice the first, is zero. Spotting that takes a glance; expanding it takes minutes and still arrives at zero. JEE constructs determinants around exactly these structures, which is why the habit of looking before calculating is the chapter's main skill.

How JEE actually asks Determinants

NTA publishes no chapter-wise weightage, so figures online are coaching estimates from past papers; confirm your session's syllabus and pattern in the official NTA information bulletin.

Determinants is asked alongside Matrices and the two form a predictable block. The question types repeat closely: evaluate a determinant that simplifies, apply a property, use the area or collinearity formula, or determine for what parameter value a system becomes inconsistent or has infinitely many solutions.

Key concepts, compressed

  • A determinant is defined only for square matrices and produces a single number.
  • For a 2 × 2 matrix it is ad − bc; for larger matrices it is computed by expansion along any row or column using cofactors.
  • A cofactor is the corresponding minor with the sign (−1)^(i+j) applied.
  • Row operations of the form Ri → Ri + kRj leave the determinant unchanged, which is what makes simplification safe.
  • A determinant of zero means the matrix is singular - it has no inverse, and the associated system does not have a unique solution.
  • Geometrically, a determinant measures how the matrix scales area or volume.

Properties you need before attempting the questions

Questions 17 and 18 refer to the system 2x + y = 5, x − y = 1.
PropertyEffectNote
2 × 2 determinantad − bc
Swapping two rowssign changes
Two identical rowsdeterminant = 0no calculation needed
Two proportional rowsdeterminant = 0
Common factor in a rowcomes out of the determinant
Scalar multiple|kA| = kⁿ|A|n is the order
Ri → Ri + kRjdeterminant unchangedthe simplification tool
Transpose|Aᵀ| = |A|rows and columns interchangeable
Product|AB| = |A||B|
Inverse|A⁻¹| = 1/|A|
Adjoint|adj A| = |A|^(n−1)
Triangular matrixproduct of diagonal entries
Area of a triangle½|x₁(y₂ − y₃) + x₂(y₃ − y₁) + x₃(y₁ − y₂)|
Cramer's rulex = Dx/D, y = Dy/Drequires D ≠ 0

The five mistakes that cost the most marks

  • Expanding before simplifying. Look for common factors, proportional rows and opportunities to create zeros first.
  • Writing |kA| = k|A|. The scalar multiplies every one of the n rows, so it comes out as kⁿ.
  • Applying Cramer's rule when D = 0. The rule is undefined there, and the case must instead be resolved by examining Dx, Dy and Dz.
  • Dropping the absolute value in the area formula. A determinant can be negative; an area cannot.
  • Confusing a minor with a cofactor. The cofactor carries the sign (−1)^(i+j), and forgetting it flips terms in the expansion.

Practice set 1: evaluation

1. Evaluate the determinant of [[3, 1], [2, 4]].

10. For a 2 × 2 matrix the determinant is ad − bc = (3)(4) − (1)(2) = 12 − 2 = 10. Since it is non-zero, the matrix is non-singular and invertible. Getting the subtraction the wrong way round gives −10, which will be among the options.

2. Evaluate the determinant of [[1, 2, 3], [4, 5, 6], [7, 8, 9]].

0. Expanding along the first row: 1(45 − 48) − 2(36 − 42) + 3(32 − 35) = −3 + 12 − 9 = 0. But there was a shortcut: the second row is the average of the first and third, so R₁ + R₃ = 2R₂. That linear dependence forces the determinant to zero, and spotting it avoids the expansion entirely.

3. Evaluate the determinant of the upper triangular matrix [[2, 3, 4], [0, 5, 6], [0, 0, 7]].

70. For a triangular matrix - upper or lower - the determinant is simply the product of the diagonal entries: 2 × 5 × 7 = 70. This is why row-reducing to triangular form is a practical way to evaluate large determinants, and it also explains why the identity matrix has determinant 1.

4. What is the determinant of the identity matrix of any order?

1. It is triangular with every diagonal entry equal to 1, so the product is 1. This is consistent with the identity leaving every vector unchanged - it scales area and volume by a factor of one. It also confirms |A||A⁻¹| = |I| = 1, giving |A⁻¹| = 1/|A|.

5. What is the difference between a minor and a cofactor?

The minor Mᵢⱼ is the determinant of the submatrix left after deleting row i and column j. The cofactor is that minor with the sign (−1)^(i+j) attached, so Cᵢⱼ = (−1)^(i+j) Mᵢⱼ. Expansion uses cofactors, not minors, and omitting the sign is a routine source of errors in 3 × 3 expansions.

6. Evaluate the determinant of [[2, 0, 1], [3, 1, 2], [1, 4, 5]].

5. Expand along the first row, which contains a zero: 2(1×5 − 2×4) − 0(...) + 1(3×4 − 1×1) = 2(5 − 8) + (12 − 1) = −6 + 11 = 5. Choosing the row with the zero meant one of the three cofactors never had to be computed - which is the whole reason to look at the layout before expanding.

Practice this now

Practice set 2: properties

7. What happens to a determinant when two rows are swapped?

Its sign changes. Swapping twice therefore returns the original value, which is consistent with an even number of swaps being equivalent to none. This property is what forces the next result: a determinant with two identical rows must equal its own negative.

8. Why is a determinant with two identical rows equal to zero?

Because swapping those two rows changes the sign but leaves the matrix unchanged, so |A| = −|A|, which forces |A| = 0. This is the fastest zero-detector available - scan for repeated rows before computing anything, since it ends the question in one glance.

9. Can a common factor be taken out of a determinant?

Yes, but from a single row or column at a time, not from the whole matrix. If every entry of one row shares a factor k, that k comes outside the determinant once. This is precisely why the scalar rule in the next question has an exponent - a scalar multiplying the whole matrix affects every row separately.

10. For a 3 × 3 matrix A, what is |2A| in terms of |A|?

8|A|, since |kA| = kⁿ|A| with n = 3 gives 2³ = 8. Writing 2|A| is one of the most common errors in the chapter. The reason is question 9: the factor 2 comes out of each of the three rows independently, contributing 2 × 2 × 2.

11. If |A| = 3 and |B| = 4, what is |AB|?

12. Determinants are multiplicative: |AB| = |A||B| = 12. Note this holds even though AB ≠ BA in general - and indeed |AB| = |BA| always, because both equal the product of the determinants. It also gives |Aⁿ| = |A|ⁿ directly.

12. How does the determinant of a transpose relate to the original?

|Aᵀ| = |A| - they are equal. A useful consequence is that every property stated for rows holds identically for columns, so you may freely use column operations as well as row operations when simplifying.

13. Which row operation leaves a determinant unchanged?

Ri → Ri + kRj, adding a multiple of one row to another. This is the operation used for simplification, precisely because it costs nothing. Note that Ri → kRi does change the determinant, multiplying it by k, and swapping rows changes the sign - so only the first operation is entirely free.

14. What is the determinant of a matrix with two proportional rows?

Zero. If R₂ = kR₁, then factoring k out of the second row leaves two identical rows, which gives zero by question 8. Proportionality is slightly harder to spot than outright equality, so it is worth scanning for deliberately - it is a favourite construction in exam determinants.

Practice set 3: applications

15. Find the area of the triangle with vertices (0, 0), (4, 0) and (0, 3).

6 square units. Using ½|x₁(y₂ − y₃) + x₂(y₃ − y₁) + x₃(y₁ − y₂)| = ½|0(0 − 3) + 4(3 − 0) + 0(0 − 0)| = ½(12) = 6. Check it geometrically: this is a right triangle with legs 4 and 3, so the area is ½ × 4 × 3 = 6, which agrees.

16. Are the points (1, 2), (2, 4) and (3, 6) collinear?

Yes. Applying the area formula gives ½|1(4 − 6) + 2(6 − 2) + 3(2 − 4)| = ½|−2 + 8 − 6| = 0. A zero area means the three points do not enclose a triangle, so they lie on a line. Here they obviously satisfy y = 2x, which confirms it - but the determinant test works when the pattern is not obvious.

17. State Cramer's rule and its condition.

For a system with coefficient determinant D, each variable is given by its own determinant over D: x = Dx/D, y = Dy/D, and so on, where Dx replaces the x-column with the constants. The condition is D ≠ 0. When D = 0 the rule is undefined and a different analysis is required.

18. Solve 2x + y = 5 and x − y = 1 using Cramer's rule.

x = 2, y = 1. Here D = (2)(−1) − (1)(1) = −3. Replacing the x-column with the constants gives Dx = (5)(−1) − (1)(1) = −6, and replacing the y-column gives Dy = (2)(1) − (5)(1) = −3. So x = −6/−3 = 2 and y = −3/−3 = 1. Substituting back: 2(2) + 1 = 5 and 2 − 1 = 1, both correct.

19. What does D = 0 tell you about a system of linear equations?

That there is no unique solution - either none or infinitely many. To distinguish them, examine Dx, Dy and Dz. If all are also zero the system has infinitely many solutions; if at least one is non-zero the system is inconsistent and has none. Reporting 'no solution' without that check is incomplete.

20. When does a homogeneous system have a non-trivial solution?

Exactly when D = 0. A homogeneous system always admits the trivial solution where every variable is zero, so the only question is whether others exist. If D ≠ 0 the solution is unique and therefore must be the trivial one; a zero determinant is what permits additional solutions.

21. If |A| = 5, what is |A⁻¹|?

1/5. From AA⁻¹ = I, taking determinants gives |A||A⁻¹| = 1, so |A⁻¹| = 1/|A|. This also shows again why a singular matrix cannot be inverted - a determinant of zero would require its inverse to have infinite determinant, which is impossible.

Practice set 4: advanced properties

22. For a 3 × 3 matrix with |A| = 4, what is |adj A|?

16. The rule is |adj A| = |A|^(n−1), so with n = 3 the answer is 4² = 16. It follows from taking determinants of A · adj(A) = |A| I: the left side is |A||adj A| and the right side is |A|³, so |adj A| = |A|².

23. Why is the determinant of a skew-symmetric matrix of odd order always zero?

Because Aᵀ = −A, so |A| = |Aᵀ| = |−A| = (−1)ⁿ|A|. For odd n this gives |A| = −|A|, forcing |A| = 0. For even order the argument gives no information, and such determinants are generally non-zero - which is exactly the distinction being tested.

24. If |A| = 3, what is |A⁴|?

81. Since determinants are multiplicative, |Aⁿ| = |A|ⁿ, so |A⁴| = 3⁴ = 81. This follows directly from |AB| = |A||B| applied repeatedly, and it works for any positive integer power. Combined with |A⁻¹| = 1/|A|, it extends to negative powers as well.

25. For what value of k is the matrix [[k, 2], [3, 6]] singular?

k = 1. Singular means the determinant is zero: 6k − 6 = 0, so k = 1. At that value the rows become [1, 2] and [3, 6], which are proportional - consistent with question 14. Parameter questions of this shape are the most common form in which determinants appear.

26. What is the geometric meaning of a determinant?

It is the factor by which the matrix scales area in two dimensions or volume in three. A determinant of 2 doubles areas; a determinant of zero collapses the space onto a line or point, which is why singular matrices are not invertible - the collapse destroys information that cannot be recovered. A negative determinant additionally indicates a reversal of orientation.

Practice set 5: technique

27. What is the fastest general approach to evaluating a determinant in an exam?

Simplify before expanding. Scan for identical or proportional rows, which give zero immediately. Look for a common factor to extract. Then use Ri → Ri + kRj to create zeros in one column, and expand along that column. Direct expansion should be a last resort, not an opening move.

28. What is the sum of the products of the elements of one row with the cofactors of a different row?

Zero, always. Multiplying a row by its own cofactors gives the determinant; multiplying by another row's cofactors gives zero, because the result is the determinant of a matrix with two identical rows. This is what makes A · adj(A) = |A| I come out diagonal rather than full.

29. What does it mean for a matrix to be singular?

That its determinant is zero. Equivalently: it has no inverse, its rows are linearly dependent, the associated homogeneous system has non-trivial solutions, and it collapses space onto a lower dimension. All of these are the same condition seen from different angles, and questions freely switch between the phrasings.

30. Along which row or column should you expand a determinant?

Whichever contains the most zeros, since every zero entry removes an entire cofactor computation. If no row or column has zeros, create some first with the operation Ri → Ri + kRj, which leaves the determinant unchanged. Expanding along the first row purely by habit is often the slowest available route.

How to study this chapter efficiently

  • Before computing anything, scan for identical rows, proportional rows and common factors. Several exam determinants are zero by inspection.
  • Learn the three row operations and what each does: adding a multiple changes nothing, scaling multiplies, swapping negates.
  • Memorise |kA| = kⁿ|A| with the exponent. It is the single most-missed property in the chapter.
  • For consistency questions, always compute D first, then Dx, Dy and Dz if D turns out to be zero.
  • Keep the absolute value in the area formula and remember that a zero area means collinearity.
  • Prepare Determinants and Matrices together - the adjoint, inverse and linear-systems material is shared.

Turn this into active practice

The habit this chapter needs is a pause before calculating, and pauses are hard to build by reading. A worked solution that opens with 'notice R₂ = 2R₁' shows you the observation without ever making you miss it first.

The JEE Determinants quiz on QUFF generates fresh questions across evaluation, properties, Cramer's rule and consistency, marks them instantly and explains each answer. Time yourself: if a determinant is taking more than a minute, the question is almost certainly telling you that a simplification was available and you went past it.

The bottom line

Now go test yourself

The questions worth rechecking are 2, 10, 19, 23 and 28 - the linear dependence that makes a determinant zero, the kⁿ scalar rule, what to do when D = 0, the odd-order skew-symmetric result, and the cross-row cofactor sum. Those five cover the chapter's real content.

For final revision, write out the eight properties and beside each note whether it changes the determinant, negates it, or leaves it alone. Then evaluate one 3 × 3 determinant twice - once by direct expansion, once by simplifying first - and compare how long each took.

FAQs

Frequently asked questions

What is the fastest way to evaluate a determinant?

Simplify before expanding. Check for identical or proportional rows, which make it zero immediately, extract any common factor, then use row operations to create zeros and expand along that row or column. Direct expansion should be the last resort.

Why is |kA| equal to kⁿ|A| rather than k|A|?

Because the scalar multiplies every entry, and a common factor can only be taken out of one row at a time. For an n × n matrix that extraction happens n times, contributing kⁿ. For a 3 × 3 matrix, |2A| = 8|A|.

What do I do when Cramer's rule gives D = 0?

The rule does not apply, and the system has no unique solution. Examine Dx, Dy and Dz: if all are zero as well, there are infinitely many solutions; if any is non-zero, the system is inconsistent and has none.

How do determinants test whether points are collinear?

Compute the area of the triangle they form using the determinant formula. If the area is zero the points cannot enclose a triangle, so they lie on a straight line. This works for any three points, including ones where the pattern is not visible by inspection.

Why is a skew-symmetric matrix of odd order always singular?

Because Aᵀ = −A gives |A| = (−1)ⁿ|A|. For odd n this becomes |A| = −|A|, which forces the determinant to zero. For even order the relation is satisfied trivially and gives no constraint, so even-order skew-symmetric determinants can be non-zero.

What is the weightage of Determinants in JEE Main?

NTA publishes no chapter-wise weightage, so circulating figures are estimates from past papers. In practice Determinants and Matrices are asked as a pair and form one of the more predictable blocks - the question types repeat closely from year to year.

Related quizzes

Put it into practice

Keep reading

Related articles

Browse all articles →

Test yourself in two minutes

Six adaptive questions, every answer explained by an AI tutor. Free.

▶ Start an AI quiz