NDA गणित: सारणिक (Determinants) — गुण, सहखंड और परीक्षा-उपयोगी विधियाँ

intermediate 22 min read

अवधारणा

सारणिक एक वर्गाकार matrix से जुड़ी एक संख्या है — एक स्केलर मान जो उस matrix के "आयतन-परिवर्तन कारक" को व्यक्त करता है। सोचो: अगर एक 2×22 \times 2 matrix दो vectors को represent करती है, तो उसका सारणिक उन दोनों vectors द्वारा बने parallelogram का क्षेत्रफल देता है (संकेत सहित)।

यह analogy NDA में बहुत काम आती है। जब सारणिक शून्य होता है, तो इसका अर्थ है कि वे vectors एक ही रेखा पर हैं — parallelogram का क्षेत्रफल शून्य। Matrix की भाषा में: rows (या columns) रैखिक रूप से निर्भर हैं।

2×22 \times 2 matrix के लिए: abcd=adbc\begin{vmatrix} a & b \\ c & d \end{vmatrix} = ad - bc

3×33 \times 3 matrix के लिए cofactor expansion पहली row से: a1a2a3b1b2b3c1c2c3=a1(b2c3b3c2)a2(b1c3b3c1)+a3(b1c2b2c1)\begin{vmatrix} a_1 & a_2 & a_3 \\ b_1 & b_2 & b_3 \\ c_1 & c_2 & c_3 \end{vmatrix} = a_1(b_2c_3 - b_3c_2) - a_2(b_1c_3 - b_3c_1) + a_3(b_1c_2 - b_2c_1)

NDA में 3×33 \times 3 सारणिक सबसे अधिक आते हैं। Expansion को रटो मत — समझो। पहले element का cofactor उस element को हटाकर बनी 2×22 \times 2 matrix का सारणिक है, चिह्न के साथ।

चिह्न pattern याद करने का तरीका: (+++++)\begin{pmatrix} + & - & + \\ - & + & - \\ + & - & + \end{pmatrix}

(i,j)(i,j) position का चिह्न (1)i+j(-1)^{i+j} होता है।

NDA के recent papers में एक pattern साफ़ दिखता है: अधिकांश प्रश्नों का उत्तर शून्य है। इसका कारण यह नहीं कि प्रश्न आसान हैं — बल्कि इसलिए कि परीक्षक जानना चाहते हैं कि तुम रैखिक निर्भरता पहचान सकते हो या नहीं। इस pattern को समझ लो तो कई प्रश्न बिना पूरी calculation किए हल हो जाते हैं।


गहन विश्लेषण

सारणिक के मूलभूत गुण — परीक्षा में सबसे उपयोगी

गुण 1: Transpose से कोई फ़र्क नहीं A=AT|A| = |A^T| यानी rows और columns की भूमिका समान है। जो नियम rows पर लागू होता है, वही columns पर भी।

गुण 2: दो rows/columns की अदला-बदली से चिह्न बदलता है RiRjAAR_i \leftrightarrow R_j \Rightarrow |A| \to -|A| अगर दो rows समान हों तो सारणिक शून्य होगा (क्योंकि अदला-बदली के बाद भी वही सारणिक मिलेगा, लेकिन चिह्न उलटा — अतः A=AA=0|A| = -|A| \Rightarrow |A| = 0)।

गुण 3: एक row का scalar गुणा kRiAkAk \cdot R_i \Rightarrow |A| \to k \cdot |A| ध्यान दो: kA=knA|kA| = k^n |A| जहाँ nn matrix की order है। 3×33 \times 3 के लिए kA=k3A|kA| = k^3 |A|। यह बहुत common गलती है।

गुण 4: रैखिक निर्भरता → सारणिक शून्य अगर एक row दूसरी rows का linear combination है, तो A=0|A| = 0

यह गुण NDA में सबसे अधिक उपयोगी है। अगर किसी 3×33 \times 3 सारणिक में तीनों rows जोड़ने पर शून्य vector मिले, तो तुरंत उत्तर शून्य।

गुण 5: Row operation RiRi+kRjR_i \to R_i + kR_j सारणिक का मान नहीं बदलता। यह row-reduction का आधार है।

गुण 6: Triangular matrix का सारणिक अगर matrix upper या lower triangular है (diagonal के एक तरफ सब शून्य), तो सारणिक diagonal elements का गुणनफल है। A=a11a22a33(triangular के लिए)|A| = a_{11} \cdot a_{22} \cdot a_{33} \quad \text{(triangular के लिए)}

सहखंड (Cofactor) और Adjoint

Element aija_{ij} का minor MijM_{ij}: iiवीं row और jjवें column हटाने के बाद बनी matrix का सारणिक।

Element aija_{ij} का cofactor CijC_{ij}: Cij=(1)i+jMijC_{ij} = (-1)^{i+j} M_{ij}

Adjoint matrix: cofactors की transpose matrix। adj(A)=[Cij]T\text{adj}(A) = [C_{ij}]^T

Inverse का सूत्र: A1=adj(A)A(A0 के लिए)A^{-1} = \frac{\text{adj}(A)}{|A|} \quad (|A| \neq 0 \text{ के लिए})

और यह महत्वपूर्ण identity: Aadj(A)=AIA \cdot \text{adj}(A) = |A| \cdot I

Cramer का नियम — समीकरण निकाय के लिए

nn समीकरण nn अज्ञात के लिए: xi=DiDx_i = \frac{D_i}{D}

जहाँ DD coefficient matrix का सारणिक है और DiD_i वह सारणिक जो DD में iiवें column को constants से replace करने पर मिलता है।

NDA में Cramer का नियम: प्रत्यक्ष calculation से अधिक consistency/inconsistency का प्रश्न आता है।

त्रिभुज-आधारित प्रश्न — NDA का विशेष pattern

NDA 2024-2026 में त्रिभुज ABC की sides a,b,ca, b, c या angles A,B,CA, B, C से बने सारणिक के प्रश्न बार-बार आए हैं। इनकी विधि:

  1. Sine rule का उपयोग करो: asinA=bsinB=csinC=2R\frac{a}{\sin A} = \frac{b}{\sin B} = \frac{c}{\sin C} = 2R
  2. त्रिभुज की constraint: A+B+C=πA + B + C = \pi, इसलिए tan(B+C)=tan(πA)=tanA\tan(B+C) = \tan(\pi - A) = -\tan A
  3. Row/column operations से रैखिक निर्भरता दिखाओ
  4. उत्तर प्रायः शून्य

शॉर्टकट और युक्तियाँ

patternRow-Sum शून्य परीक्षण

जब भी 3×33 \times 3 सारणिक दिया हो और rows जोड़ने पर प्रत्येक column में शून्य आए — बिना expansion किए उत्तर शून्य लिखो।

उदाहरण: abpqxybcqryzcarpzx\begin{vmatrix} a-b & p-q & x-y \\ b-c & q-r & y-z \\ c-a & r-p & z-x \end{vmatrix}

Column-wise जोड़ो: (ab)+(bc)+(ca)=0(a-b)+(b-c)+(c-a) = 0, (pq)+(qr)+(rp)=0(p-q)+(q-r)+(r-p) = 0, (xy)+(yz)+(zx)=0(x-y)+(y-z)+(z-x) = 0। तीनों rows का योग शून्य vector है, अतः rows रैखिक निर्भर हैं।

Standard method (full expansion): 3-4 मिनट। इस pattern से: 15 सेकंड।

substitutionत्रिभुज identity → तुरंत शून्य

त्रिभुज से बने सारणिक में A+B+C=πA + B + C = \pi और sine rule को एक साथ लगाओ।

tan(B+C)=tan(πA)=tanA\tan(B+C) = \tan(\pi - A) = -\tan A — यह substitution अक्सर दो rows/columns को proportional बना देती है।

Sine rule: a=2RsinAa = 2R\sin A, b=2RsinBb = 2R\sin B, c=2RsinCc = 2R\sin C। इसे लगाने के बाद 2R2R factor बाहर निकालो (3 rows हैं तो (2R)3(2R)^3 बाहर आएगा) — फिर बची matrix में pattern देखो।

Standard method (direct expansion): 5-6 मिनट। Substitution-first approach: 90 सेकंड।

pattern$x^3 + y^3 + z^3 - 3xyz$ identity

जब abcbcacab\begin{vmatrix} a & b & c \\ b & c & a \\ c & a & b \end{vmatrix} type का सारणिक दिखे, याद करो:

A=(a3+b3+c33abc)=(a+b+c)(a2+b2+c2abbcca)|A| = -(a^3 + b^3 + c^3 - 3abc) = -(a+b+c)(a^2+b^2+c^2-ab-bc-ca)

और a3+b3+c33abc=(a+b+c)(a2+b2+c2abbcca)a^3+b^3+c^3 - 3abc = (a+b+c)(a^2+b^2+c^2-ab-bc-ca)

अगर a+b+c=0a + b + c = 0 हो, तो सारणिक तुरंत शून्य।

Expansion without identity: 4 मिनट। Identity पहचानकर: 20 सेकंड।

patternDiagonal Matrix का सारणिक

जब matrix upper/lower triangular हो या diagonal हो:

a0b00c=abc\begin{vmatrix} a & * & * \\ 0 & b & * \\ 0 & 0 & c \end{vmatrix} = abc

Stars (*) चाहे कुछ भी हों — diagonal elements का गुणनफल ही सारणिक है।

यह RiRi+kRjR_i \to R_i + kR_j operations से triangular form बनाने पर भी लागू होता है। Complex expansion को avoid करो।

Standard cofactor expansion: 2 मिनट। Triangular form पहचान: 10 सेकंड।

pattern$|kA|$ का सही सूत्र

n×nn \times n matrix के लिए: kA=knA|kA| = k^n |A|

3×33 \times 3 के लिए: A=(1)3A=A|-A| = (-1)^3 |A| = -|A|

जब NDA में 2A|2A| या A|-A| पूछे, तो order देखो, order का घातांक लगाओ।

गलत approach (kA=kA|kA| = k|A|): 30 सेकंड लेकिन गलत। सही formula: 5 सेकंड।


तेज़-समाधान रूपरेखा

परीक्षा में सारणिक का प्रश्न देखते ही यह decision tree follow करो:

Step 1 — रैखिक निर्भरता परीक्षण (10 सेकंड) तीनों rows जोड़ो। अगर शून्य vector मिले → उत्तर शून्य, अगला प्रश्न।

Step 2 — Pattern पहचानो (15 सेकंड)

Step 3 — Row operations से simplify करो (30-60 सेकंड) कोई row शून्य बना सकते हो? R1R1R2R_1 \to R_1 - R_2 type। Triangular form बनाओ।

Step 4 — Direct expansion (अंतिम विकल्प) सबसे अधिक zeros वाली row/column से expand करो। एक शून्य element = एक 2×22\times 2 calculation बचती है।

समय-सीमा: Step 1-2 में उत्तर मिले तो 30 सेकंड। Step 3 में: 90 सेकंड। Step 4: 3 मिनट। NDA में step 4 तक जाने वाले 10% प्रश्न ही होते हैं।


हल किए गए PYQs

क्यों यह प्रश्न: यह प्रश्न रैखिक निर्भरता की समझ परखता है। Row-sum technique का सबसे शुद्ध उदाहरण।

समाधान का रास्ता: LHS के तीनों rows को column-wise जोड़ो। पहले column में (ab)+(bc)+(ca)=0(a-b)+(b-c)+(c-a) = 0, दूसरे में (pq)+(qr)+(rp)=0(p-q)+(q-r)+(r-p) = 0, तीसरे में (xy)+(yz)+(zx)=0(x-y)+(y-z)+(z-x) = 0। Row 1 + Row 2 + Row 3 = शून्य row, अतः rows रैखिक निर्भर हैं, सारणिक = 0। इसलिए k=0k = 0

Previous Year Questionपिछले वर्ष का प्रश्न2026
If |a−b p−q x−y ; b−c q−r y−z ; c−a r−p z−x| = k|a b c ; p q r ; x y z|, then what is the value of k?
  1. −1
  2. 0
  3. 1/2
  4. 1
Solutionसमाधान
Add all three rows of the LHS determinant: (a−b)+(b−c)+(c−a) = 0, similarly for other columns. So the sum of rows is zero, meaning the rows are linearly dependent. Hence the determinant equals 0, giving k = 0.

क्यों यह प्रश्न: यह expansion + algebraic interpretation का combination है। सारणिक का मान algebraic expression से जोड़ने का कौशल परखता है।

समाधान का रास्ता: पहली row से cofactor expansion करो। x(yz1)1(z1)+1(1y)x(yz-1) - 1(z-1) + 1(1-y) = xyzxz+1+1yxyz - x - z + 1 + 1 - y = xyz(x+y+z)+2xyz - (x+y+z) + 2 = qp+2q - p + 2। Positive होने की शर्त: qp+2>0q - p + 2 > 0, यानी q+2>pq + 2 > p

Previous Year Questionपिछले वर्ष का प्रश्न2026
Let p = (x + y + z) and q = xyz. If |x 1 1 ; 1 y 1 ; 1 1 z| is positive, then which one of the following is correct?
  1. q > p
  2. q + 1 > p
  3. q + 2 > p
  4. q + 2 ≥ p
Solutionसमाधान
Expanding the determinant: x(yz − 1) − 1(z − 1) + 1(1 − y) = xyz − x − z + 1 + 1 − y = xyz − (x + y + z) + 2 = q − p + 2. For this to be positive: q − p + 2 > 0, i.e., q + 2 > p.

क्यों यह प्रश्न: A+B+C=πA + B + C = \pi constraint का सारणिक में उपयोग — NDA 2024 का महत्वपूर्ण pattern।

समाधान का रास्ता: B+C=πAB + C = \pi - A से tan(B+C)=tan(πA)=tanA\tan(B+C) = \tan(\pi-A) = -\tan A। अब पहली row से expand करो: cosC[0cosCsinBtan(B+C)]sinB[tanAcosC0]+0\cos C[0 \cdot \cos C - \sin B \cdot \tan(B+C)] - \sin B[\tan A \cdot \cos C - 0] + 0। यह =sinBcosCtan(B+C)sinBtanAcosC= -\sin B \cos C \cdot \tan(B+C) - \sin B \tan A \cos C =sinBcosC[tanA+tanA]=0= -\sin B \cos C[-\tan A + \tan A] = 0

Previous Year Questionपिछले वर्ष का प्रश्न2024
If ABC is a triangle, then what is the value of the determinant |cosC sinB 0; tanA 0 sinB; 0 tan(B+C) cosC|?
  1. −1
  2. 0
  3. 1
  4. 3
Solutionसमाधान
In triangle ABC, A + B + C = π, so B + C = π − A, hence tan(B+C) = tan(π−A) = −tanA. Expanding the determinant along the first row: cosC·[0·cosC − sinB·tan(B+C)] − sinB·[tanA·cosC − sinB·0] + 0 = cosC·(−sinB·tan(B+C)) − sinB·tanA·cosC = −sinB·cosC·tan(B+C) − sinB·tanA·cosC = −sinB·cosC[tan(B+C) + tanA] = −sinB·cosC[−tanA + tanA] = 0.

क्यों यह प्रश्न: Sine rule का direct application। 3×33 \times 3 में sides और angles दोनों होने पर किस transformation से simplification होती है, यह समझना ज़रूरी है।

समाधान का रास्ता: Sine rule से bsinA=asinBb\sin A = a\sin B और csinA=asinCc\sin A = a\sin C। इन्हें सारणिक में substitute करो। Row 2 और Row 3 के elements proportional हो जाते हैं। Alternatively, direct expansion में a2(1cos2A)bsinA(bsinA1sinAcosAc)+csinA()a^2(1-\cos^2 A) - b\sin A(b\sin A \cdot 1 - \sin A \cos A \cdot c) + c\sin A(\ldots) — सभी terms cancel होती हैं। उत्तर शून्य।

Previous Year Questionपिछले वर्ष का प्रश्न2024
If a, b, c are the sides of triangle ABC, then what is | a² b sinA c sinA ; b sinA 1 cosA ; c sinA cosA 1 | equal to?
  1. Zero
  2. Area of triangle
  3. Perimeter of triangle
  4. a² + b² + c²
Solutionसमाधान
Using the sine rule, a/sinA = b/sinB = c/sinC = 2R, so b sinA = a sinB and c sinA = a sinC. Multiplying the first row by sinA and using these relations leads to two proportional rows after factoring. More directly, expanding the determinant and using a² = b² + c² – 2bc cosA along with sinA relations causes all terms to cancel, giving zero.

क्यों यह प्रश्न: x3+y3+z3=3xyzx^3 + y^3 + z^3 = 3xyz identity और सारणिक का संयोजन — algebraic depth परखता है।

समाधान का रास्ता: sin3A+sin3B+sin3C=3sinAsinBsinC\sin^3 A + \sin^3 B + \sin^3 C = 3\sin A\sin B\sin C का अर्थ है sinA+sinB+sinC=0\sin A + \sin B + \sin C = 0 (identity x3+y3+z33xyz=(x+y+z)(x2+y2+z2xyyzzx)x^3+y^3+z^3-3xyz = (x+y+z)(x^2+y^2+z^2-xy-yz-zx) से, और x2+y2+z2xyyzzx0x^2+y^2+z^2-xy-yz-zx \neq 0 generally)। Sine rule से asinAa \propto \sin A, अतः a+b+c=0a + b + c = 0 (proportionality से)। सारणिक abcbcacab=(a+b+c)(a2+b2+c2abbcca)\begin{vmatrix} a & b & c \\ b & c & a \\ c & a & b \end{vmatrix} = -(a+b+c)(a^2+b^2+c^2-ab-bc-ca)a+b+c=0a+b+c = 0 से सारणिक = 0।

Previous Year Questionपिछले वर्ष का प्रश्न2024
If in a triangle ABC, sin³A + sin³B + sin³C = 3 sinA sinB sinC, then what is the value of the determinant | a b c ; b c a ; c a b |, where a, b, c are sides of the triangle?
  1. a + b + c
  2. ab + bc + ca
  3. (a + b)(b + c)(c + a)
  4. 0
Solutionसमाधान
The identity sin³A + sin³B + sin³C = 3sinA sinB sinC implies sinA + sinB + sinC = 0 (using x³+y³+z³ – 3xyz = (x+y+z)(x²+y²+z²–xy–yz–zx)), but since sines of angles of a triangle are positive, the only way is if a + b + c = 0 (by sine rule, proportionality). The determinant | a b c ; b c a ; c a b | expanded equals –(a³ + b³ + c³ – 3abc) = –(a+b+c)(a²+b²+c²–ab–bc–ca). If a + b + c = 0, the determinant equals 0.

आम गलतियाँ


संबंधित विषय

SarkariRise पर अभ्यास

Sign up + get 3 free mocks →