RowQ
The Vault
RowQ
The Vault
CBSE Class 12 Maths · 11 questions · 26 marks
Every square matrix carries a single number, its determinant, that decides whether the matrix is invertible and measures how it scales area or volume. This chapter builds the determinant from 2×2 up to 3×3 expansion, uses it to test collinearity of points and area of a triangle, and packages the adjoint into a clean formula for A⁻¹ — the algebraic partner to the row-operation method from the previous chapter.
The value of the determinant |[3,4],[1,2]| is:
Answer
The value is 2. For a 2×2 determinant |[a,b],[c,d]| = ad − bc. Here ad − bc = 3×2 − 4×1 = 6 − 4 = 2.
If A is a 3×3 matrix with |A| = 5, then |3A| equals:
Answer
|3A| = 135. For an n×n matrix, |kA| = kⁿ|A|. Here n = 3 and k = 3. So |3A| = 3³ × 5 = 27 × 5 = 135.
The area of the triangle with vertices (2,3), (-1,0) and (2,-4) is:
Answer
The area is 10.5 sq units. Area = (1/2)|x1(y2−y3) + x2(y3−y1) + x3(y1−y2)|. Substituting: (1/2)|2(0-(-4)) + (-1)(-4-3) + 2(3-0)| = (1/2)|2×4 + (-1)×(-7) + 2×3| = (1/2)|8+7+6|. = (1/2)(21) = 10.5 sq units.
If A = [[2,0],[0,2]], then A⁻¹ equals:
Answer
A⁻¹ = [[1/2,0],[0,1/2]]. |A| = 2×2 − 0×0 = 4, and adj(A) = [[2,0],[0,2]] since the off-diagonal cofactors vanish. A⁻¹ = adj(A)/|A| = (1/4)[[2,0],[0,2]] = [[1/2,0],[0,1/2]].
Assertion (A): If two rows of a determinant are identical, the value of the determinant is zero. Reason (R): Interchanging two rows of a determinant negates its value, so a matrix with two identical rows satisfies D = -D.
Answer
Both A and R are true and R is the correct explanation of A. Reason R is a standard property: swapping any two rows multiplies the determinant by −1. If the two identical rows are swapped, the determinant D must equal −D (since swapping identical rows changes nothing visibly), forcing 2D = 0, so D = 0. This directly proves Assertion A, so R correctly explains A.
Using determinants, check whether the points (1,2), (3,6) and (5,10) are collinear.
Answer
Points are collinear exactly when the triangle they form has area 0. Area = (1/2)|1(6-10) + 3(10-2) + 5(2-6)| = (1/2)|1×(-4) + 3×8 + 5×(-4)| = (1/2)|-4+24-20|. = (1/2)|0| = 0. Since the area is 0, the three points are collinear.
Find the value of x if |[x,2],[3,x]| = |[4,2],[1,3]|.
Answer
Left side: |[x,2],[3,x]| = x² − 2×3 = x² − 6. Right side: |[4,2],[1,3]| = 4×3 − 2×1 = 12 − 2 = 10. Setting them equal: x² − 6 = 10, so x² = 16, giving x = ±4.
If A is a 3×3 matrix with |A| = 4, find the value of |adj(A)|.
Answer
For an n×n invertible matrix, |adj(A)| = |A|ⁿ⁻¹. Here n = 3, so |adj(A)| = |A|² = 4² = 16. This follows from the identity A·adj(A) = |A|·I: taking determinants of both sides gives |A|·|adj(A)| = |A|ⁿ, and dividing by |A| (nonzero) gives |adj(A)| = |A|ⁿ⁻¹.
Find the inverse of A = [[2,-1,1],[-1,2,-1],[1,-1,2]] using the adjoint method.
Answer
First find |A| by expanding along the first row: |A| = 2(2×2 - (-1)×(-1)) - (-1)((-1)×2 - (-1)×1) + 1((-1)×(-1) - 2×1) = 2(4-1) + 1(-2+1) + 1(1-2) = 2×3 - 1 - 1 = 4. Since |A| = 4 ≠ 0, A is invertible. Cofactors: C11=3, C12=1, C13=-1, C21=1, C22=3, C23=1, C31=-1, C32=1, C33=3. The cofactor matrix [[3,1,-1],[1,3,1],[-1,1,3]] happens to be symmetric, so adj(A) (its transpose) is the same matrix: adj(A) = [[3,1,-1],[1,3,1],[-1,1,3]]. A⁻¹ = adj(A)/|A| = (1/4)[[3,1,-1],[1,3,1],[-1,1,3]].
Using Cramer's rule (the determinant method), solve the system: x + y + z = 6, y + 3z = 11, x - 2y + z = 0.
Answer
Write the coefficient determinant D = |[1,1,1],[0,1,3],[1,-2,1]|. Expanding along the first row: D = 1(1×1 - 3×(-2)) - 1(0×1 - 3×1) + 1(0×(-2) - 1×1) = 1(1+6) - 1(0-3) + 1(0-1) = 7 + 3 - 1 = 9. D = 9. Dx (replace column 1 with 6,11,0): Dx = |[6,1,1],[11,1,3],[0,-2,1]| = 6(1+6) - 1(11-0) + 1(-22-0) = 42 - 11 - 22 = 9. Dy (replace column 2): Dy = |[1,6,1],[0,11,3],[1,0,1]| = 1(11-0) - 6(0-3) + 1(0-11) = 11 + 18 - 11 = 18. Dz (replace column 3): Dz = |[1,1,6],[0,1,11],[1,-2,0]| = 1(0+22) - 1(0-11) + 6(0-1) = 22 + 11 - 6 = 27. By Cramer's rule: x = Dx/D = 9/9 = 1, y = Dy/D = 18/9 = 2, z = Dz/D = 27/9 = 3. Check in original equations: 1+2+3=6 ✓, 2+9=11 ✓, 1-4+3=0 ✓.
Read the following and answer the questions that follow: Two friends invest in shares of two companies. Matrix A = [[5000,3000],[2000,7000]] gives the amounts invested in rupees, where rows represent Friend 1 and Friend 2, and columns represent Company X and Company Y. (a) Find |A|. (b) Is A invertible? Justify your answer. (c) Find adj(A). (d) Find A⁻¹.
Answer
(a) |A| = 5000×7000 - 3000×2000 = 35,000,000 - 6,000,000 = 29,000,000. (b) Yes, A is invertible, because |A| = 29,000,000 ≠ 0, and a square matrix is invertible exactly when its determinant is nonzero. (c) For a 2×2 matrix [[a,b],[c,d]], adj(A) = [[d,-b],[-c,a]]. Here adj(A) = [[7000,-3000],[-2000,5000]]. (d) A⁻¹ = adj(A)/|A| = (1/29,000,000)[[7000,-3000],[-2000,5000]].
RowQ generates fresh questions on Determinants, marks your answers, and explains every step.
Start free