SSC CHSL के लिए Matrix (आव्यूह): determinant, transpose, गुणन — सम्पूर्ण अध्ययन

intermediate 18 min read

अवधारणा

Matrix यानी आव्यूह — संख्याओं की एक व्यवस्थित आयताकार तालिका। सोचो जैसे तुम्हारे स्कूल की time-table थी: हर row में एक दिन, हर column में एक period — यही matrix का ढाँचा है।

गणित में matrix को brackets [ ] में लिखते हैं। इसकी order बताती है कि उसमें कितनी पंक्तियाँ (rows) और कितने स्तंभ (columns) हैं।

उदाहरण: A=[5231]A = \begin{bmatrix} 5 & 2 \\ 3 & 1 \end{bmatrix}

यह एक 2×2 matrix है — 2 rows, 2 columns।

SSC CHSL में matrix के जो प्रश्न आते हैं, वे मुख्यतः इन पाँच कार्यों पर टिके होते हैं:

  1. Matrix जोड़ना (Addition) — element-by-element जोड़
  2. Scalar गुणन — हर element को एक संख्या से गुणा करो
  3. Transpose — rows और columns की अदला-बदली
  4. Determinant — 2×2 matrix से एक संख्या निकालना
  5. Matrix गुणन (Multiplication) — order की शर्त और dot-product
  6. Trace — diagonal elements का योग

यह विषय बीजगणित का एक ऐसा हिस्सा है जहाँ concept साफ़ हो तो हर प्रश्न 30-45 seconds में हल होता है। कोई "calculation-heavy" नहीं — बस नियम याद रखो और सही जगह लगाओ।

एक बड़ी बात: Matrix गुणन में क्रम मायने रखता है — ABBAAB \neq BA अधिकतर। यह arithmetic के सामान्य गुणन से अलग है और परीक्षा में यही trap होता है।


गहन विश्लेषण

Matrix की Order (क्रम)

Matrix AA की order m×nm \times n का अर्थ है: mm rows और nn columns।

Matrix गुणन की शर्त: A(m×n)×B(n×p)=AB(m×p)A(m \times n) \times B(n \times p) = AB(m \times p)

देखो — पहली matrix का columns-count = दूसरी matrix का rows-count होना ज़रूरी है। परिणाम की order = पहली का mm और दूसरी का pp

उदाहरण: A(3×2)A(3 \times 2) और B(2×4)B(2 \times 4)AB(3×4)AB(3 \times 4)

मध्य की संख्याएँ (2 और 2) cancel हो जाती हैं, बाहरी संख्याएँ (3 और 4) परिणाम देती हैं।


Matrix Addition और Scalar Multiplication

Addition: केवल समान order की matrices जोड़ी जा सकती हैं, element-by-element।

[abcd]+[efgh]=[a+eb+fc+gd+h]\begin{bmatrix} a & b \\ c & d \end{bmatrix} + \begin{bmatrix} e & f \\ g & h \end{bmatrix} = \begin{bmatrix} a+e & b+f \\ c+g & d+h \end{bmatrix}

Scalar गुणन: हर element को scalar kk से गुणा करो।

k[abcd]=[kakbkckd]k \cdot \begin{bmatrix} a & b \\ c & d \end{bmatrix} = \begin{bmatrix} ka & kb \\ kc & kd \end{bmatrix}

ऋणात्मक matrix (A-A): हर element का चिह्न बदल दो — यही (1)A(-1) \cdot A है।

[1234]=[1234]-\begin{bmatrix} 1 & -2 \\ 3 & 4 \end{bmatrix} = \begin{bmatrix} -1 & 2 \\ -3 & -4 \end{bmatrix}

ध्यान रखो: negative के बाद जो पहले negative था, वह positive हो जाता है।


Transpose (परिवर्त)

Transpose में rows और columns की अदला-बदली होती है। Matrix AA का transpose ATA^T कहलाता है।

A=[123456]2×3AT=[142536]3×2A = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{bmatrix}_{2 \times 3} \Rightarrow A^T = \begin{bmatrix} 1 & 4 \\ 2 & 5 \\ 3 & 6 \end{bmatrix}_{3 \times 2}

नियम: AA का element aija_{ij}, ATA^T में ajia_{ji} बन जाता है। यानी पहली row → पहली column, दूसरी row → दूसरी column।


Determinant (निर्धारक) — 2×2

यह SSC CHSL में सबसे ज़्यादा पूछा जाने वाला नियम है। बस एक formula:

det[abcd]=adbc\det\begin{bmatrix} a & b \\ c & d \end{bmatrix} = ad - bc

यानी: diagonal गुणनफल का अंतर

det[5231]=(5×1)(2×3)=56=1\det\begin{bmatrix} 5 & 2 \\ 3 & 1 \end{bmatrix} = (5 \times 1) - (2 \times 3) = 5 - 6 = -1

याद करने का तरीका: "forward diagonal minus backward diagonal" — \searrow minus \swarrow


Trace (अनुरेख)

Trace = matrix के मुख्य diagonal (top-left से bottom-right) के सभी elements का योग।

trace[251037468]=2+3+8=13\text{trace}\begin{bmatrix} 2 & 5 & 1 \\ 0 & 3 & 7 \\ 4 & 6 & 8 \end{bmatrix} = 2 + 3 + 8 = 13

केवल a11+a22+a33+a_{11} + a_{22} + a_{33} + \ldots — बाकी सब elements को ignore करो।


Matrix Multiplication — संक्षिप्त विधि

ABAB निकालने के लिए: AA की हर row को BB के हर column से dot-product करो।

[2468]×[1357]\begin{bmatrix} 2 & 4 \\ 6 & 8 \end{bmatrix} \times \begin{bmatrix} 1 & 3 \\ 5 & 7 \end{bmatrix}

SSC CHSL में matrix multiplication का सीधा computation कम पूछा जाता है — order पूछना ज़्यादा common है।


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

patternDeterminant: 'X से काटो' तकनीक

2×2 matrix देखते ही mentally एक X बनाओ। X का forward diagonal (\searrow) पहले गुणा करो, backward diagonal (\swarrow) बाद में। Subtract करो — बस।

Matrix [5231]\begin{bmatrix} 5 & 2 \\ 3 & 1 \end{bmatrix}: 5×1=55 \times 1 = 5, फिर 2×3=62 \times 3 = 6, अंत में 56=15 - 6 = -1

सामान्य तरीका (formula याद करना + लिखना): 40 seconds। यह visual तरीका: 12-15 seconds। Step-count: 3 steps → 2 steps।

patternMatrix Order का 'मध्य-cancel' नियम

जब भी matrix multiplication की order पूछी जाए — दोनों orders लिखो, बीच की संख्याएँ match होनी चाहिए, और परिणाम में बाहरी संख्याएँ आती हैं।

A(3×2)A(3 \times 2), B(2×4)B(2 \times 4): लिखो 32243 \underline{2} \cdot \underline{2} 4 — बीच के 2-2 cancel, बाहर 3×43 \times 4 बचा।

विकल्पों में से गलत orders तुरंत eliminate: standard method में calculation करते हो, यहाँ सीधे 5 seconds में answer। 4 steps → 1 step।

patternTrace: 'बाएँ-से-दाएँ तिरछी लकीर' पकड़ो

3×3 या बड़ी matrix में trace निकालना हो तो आँखें सीधे a11a_{11}, a22a_{22}, a33a_{33} पर ले जाओ — diagonal पर एक तिरछी रेखा mentally खींचो और वे elements जोड़ो, बाकी सब ignore।

Matrix [251037468]\begin{bmatrix} 2 & 5 & 1 \\ 0 & 3 & 7 \\ 4 & 6 & 8 \end{bmatrix}: तुरंत देखो — 2, 3, 8 → योग 13।

पूरे matrix को scan करने में: 20 seconds। Diagonal-only trick: 6 seconds। Step-count: 9 elements scan → 3 elements scan।

eliminationNegative Matrix: 'जो था उसका उल्टा'

A-A निकालते समय options में जाओ — जो element originally positive था वह negative होगा, जो negative था वह positive होगा। एक भी element गलत हो तो option तुरंत eliminate।

A=[1234]A = \begin{bmatrix} 1 & -2 \\ 3 & 4 \end{bmatrix}A-A में 2-2 का चिह्न बदलने पर +2+2 होगा। जो option 2-2 रखे वह गलत।

इस elimination से 4 options → 1 सही: 30 seconds → 10 seconds।

patternTranspose: 'Row को Column बनाओ' एक बार में

Transpose में पहली row सीधे पहला column बन जाती है। Options में जाओ और check करो: क्या option की पहली column मूल matrix की पहली row से match करती है? एक scan में गलत options हटते हैं।

A=[123456]A = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{bmatrix}ATA^T की पहली column [123]\begin{bmatrix} 1 \\ 2 \\ 3 \end{bmatrix} होगी। जो option यह नहीं दिखाता, eliminate।

Full transpose लिखने में: 35 seconds। First-column check: 8 seconds।


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

परीक्षा-हॉल में matrix का प्रश्न देखते ही यह flow अपनाओ:

चरण 1: प्रश्न में क्या माँगा है — determinant, trace, transpose, addition, multiplication, या order?

चरण 2 (Operation के अनुसार):

चरण 3: Options में से eliminate करो — पूरी calculation अक्सर ज़रूरी नहीं, एक element check करो।

चरण 4: यदि result में fraction या बड़ी संख्या आ रही है — process दोबारा जाँचो, SSC CHSL के matrix प्रश्न clean integers में होते हैं।

लक्ष्य: हर matrix प्रश्न 30-50 seconds में।


हल किए गए PYQs

क्यों यह प्रश्न: 2×2 determinant का सबसे direct रूप — formula का application और negative result की पहचान।

Previous Year Questionपिछले वर्ष का प्रश्न
What is the determinant of matrix [[5, 2], [3, 1]]?
मैट्रिक्स [[5, 2], [3, 1]] का डिटर्मिनेंट क्या है?
  1. -1
  2. 1
  3. 11
  4. 16
  1. -1
  2. 1
  3. 11
  4. 16
Solutionसमाधान
Using the formula ad - bc for 2×2 determinant: (5×1) - (2×3) = 5 - 6 = -1.
2×2 निर्धारक के लिए सूत्र ad - bc का उपयोग करते हुए: (5×1) - (2×3) = 5 - 6 = -1।

समाधान का रास्ता: det=(5×1)(2×3)=56=1\det = (5 \times 1) - (2 \times 3) = 5 - 6 = -1। X-technique: forward 5×1=55 \times 1 = 5, backward 2×3=62 \times 3 = 6, subtract =1= -1। Options में 1-1 है — answer (A)। Result negative आया तो गलत नहीं — यहीं candidates घबराते हैं और sign बदल देते हैं।


क्यों यह प्रश्न: Matrix multiplication की order — सबसे common "concept check" प्रश्न।

Previous Year Questionपिछले वर्ष का प्रश्न
If matrix A is of order 3×2 and matrix B is of order 2×4, what is the order of matrix AB?
यदि matrix A की order 3×2 है और matrix B की order 2×4 है, तो matrix AB की order क्या होगी?
  1. 2×3
  2. 3×4
  3. 2×4
  4. 3×2
  1. 2×3
  2. 3×4
  3. 2×4
  4. 3×2
Solutionसमाधान
When multiplying matrices A(m×n) and B(n×p), the resulting matrix AB has order m×p. Here A(3×2) × B(2×4) = AB(3×4).
मैट्रिसेस A(m×n) और B(n×p) को गुणा करते समय, परिणामी मैट्रिक्स AB का क्रम m×p होता है। यहाँ A(3×2) × B(2×4) = AB(3×4)।

समाधान का रास्ता: A(3×2)×B(2×4)A(3 \times 2) \times B(2 \times 4) → बीच के 2-2 cancel → AB(3×4)AB(3 \times 4)। 5 seconds में answer। Option (B) सही।


क्यों यह प्रश्न: यह theory-based प्रश्न है — formula की पहचान।

Previous Year Questionपिछले वर्ष का प्रश्न
In a 2×2 matrix [[a, b], [c, d]], what is the formula for determinant?
2×2 matrix [[a, b], [c, d]] में determinant का सूत्र क्या होता है?
  1. a + b + c + d
  2. ad - bc
  3. ac - bd
  4. ab - cd
  1. a + b + c + d
  2. ad - bc
  3. ac - bd
  4. ab - cd
Solutionसमाधान
For a 2×2 matrix [[a, b], [c, d]], the determinant is calculated as ad - bc. This is the standard formula for 2×2 determinant.
2×2 मैट्रिक्स [[a, b], [c, d]] के लिए, निर्धारक ad - bc के रूप में गणना किया जाता है। यह 2×2 निर्धारक का मानक सूत्र है।

समाधान का रास्ता: 2×2 determinant का standard formula adbcad - bc है। Option (B) सीधे सही। अन्य options — a+b+c+da+b+c+d trace जैसा है, acbdac - bd और abcdab - cd गलत diagonals हैं।


क्यों यह प्रश्न: Matrix addition का element-by-element नियम — सबसे सरल operation, पर options designed to confuse।

Previous Year Questionपिछले वर्ष का प्रश्न
If matrix A = [[2, 4], [6, 8]] and matrix B = [[1, 3], [5, 7]], what is A + B?
  1. [[3, 7], [11, 15]]
  2. [[2, 12], [30, 56]]
  3. [[1, 1], [1, 1]]
  4. [[3, 1], [1, 1]]
Solutionसमाधान
Matrix addition is done element-wise. A + B = [[2+1, 4+3], [6+5, 8+7]] = [[3, 7], [11, 15]].
मैट्रिक्स जोड़ना तत्व-दर-तत्व किया जाता है। A + B = [[2+1, 4+3], [6+5, 8+7]] = [[3, 7], [11, 15]]।

समाधान का रास्ता: A+BA + B: [2+14+36+58+7]=[371115]\begin{bmatrix} 2+1 & 4+3 \\ 6+5 & 8+7 \end{bmatrix} = \begin{bmatrix} 3 & 7 \\ 11 & 15 \end{bmatrix}। पहला element 33 check करो → option (A) में 33 है, बाकी सब गलत। Confirm: 4+3=74+3=7, 6+5=116+5=11, 8+7=158+7=15। Answer (A)।


क्यों यह प्रश्न: A-A का concept — negative sign के साथ चिह्न-परिवर्तन का नियम।

Previous Year Questionपिछले वर्ष का प्रश्न
If matrix A = [[1, -2], [3, 4]], what is -A?
  1. [[-1, 2], [-3, -4]]
  2. [[1, 2], [3, 4]]
  3. [[-1, -2], [3, 4]]
  4. [[4, 3], [-2, 1]]
Solutionसमाधान
The negative of a matrix is obtained by changing the sign of each element. -A = [[-1, 2], [-3, -4]].
मैट्रिक्स का ऋणात्मक प्रत्येक तत्व का चिह्न बदलने से प्राप्त होता है। -A = [[-1, 2], [-3, -4]]।

समाधान का रास्ता: A=[1234]A = \begin{bmatrix} 1 & -2 \\ 3 & 4 \end{bmatrix}A=[1+234]-A = \begin{bmatrix} -1 & +2 \\ -3 & -4 \end{bmatrix}। Eliminate technique: option (B) में +2+2 की जगह +2+2 है पर 11 positive रहा — गलत। Option (C) में पहला row गलत। Option (D) पूरी तरह अलग। Option (A) = [1234]\begin{bmatrix} -1 & 2 \\ -3 & -4 \end{bmatrix} — सही।


क्यों यह प्रश्न: Trace — 3×3 matrix में, जहाँ candidates सब elements जोड़ने की गलती करते हैं।

Previous Year Questionपिछले वर्ष का प्रश्न
What is the trace of matrix [[2, 5, 1], [0, 3, 7], [4, 6, 8]]?
  1. 13
  2. 15
  3. 36
  4. 11
Solutionसमाधान
Trace of a matrix is the sum of diagonal elements. Trace = 2 + 3 + 8 = 13.
मैट्रिक्स का ट्रेस विकर्ण तत्वों का योग है। ट्रेस = 2 + 3 + 8 = 13।

समाधान का रास्ता: Diagonal elements: 22 (position 1,1), 33 (position 2,2), 88 (position 3,3)। Trace =2+3+8=13= 2 + 3 + 8 = 13। Option (A) सही। Option (C) = 36 जो शायद सब elements का योग है — वह trap है।


क्यों यह प्रश्न: Transpose — row-column flip का नियम और order का बदलना।

Previous Year Questionपिछले वर्ष का प्रश्न
What is the transpose of matrix [[1, 2, 3], [4, 5, 6]]?
  1. [[1, 4], [2, 5], [3, 6]]
  2. [[6, 5, 4], [3, 2, 1]]
  3. [[1, 2, 3], [4, 5, 6]]
  4. [[4, 1], [5, 2], [6, 3]]
Solutionसमाधान
Transpose of a matrix is obtained by interchanging rows and columns. The first row becomes first column, second row becomes second column.
मैट्रिक्स का परिवर्त पंक्तियों और स्तंभों को परस्पर बदलने से प्राप्त होता है। पहली पंक्ति पहला स्तंभ बन जाती है, दूसरी पंक्ति दूसरा स्तंभ बन जाती है।

समाधान का रास्ता: A=[123456]2×3A = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{bmatrix}_{2 \times 3}ATA^T की order 3×23 \times 2 होगी। पहली row [1,2,3][1, 2, 3] → पहला column [123]\begin{bmatrix} 1 \\ 2 \\ 3 \end{bmatrix}। Option (A) = [142536]\begin{bmatrix} 1 & 4 \\ 2 & 5 \\ 3 & 6 \end{bmatrix} — सही। Option (D) rows उलटी हैं — trap।


क्यों यह प्रश्न: Scalar multiplication — सरलतम operation, पर "कौन से elements बदलते हैं" की समझ ज़रूरी।

Previous Year Questionपिछले वर्ष का प्रश्न
If A = [[3, 1], [2, 4]] and 2A represents scalar multiplication, what is 2A?
  1. [[6, 2], [4, 8]]
  2. [[5, 3], [4, 6]]
  3. [[3, 2], [1, 4]]
  4. [[6, 1], [2, 8]]
Solutionसमाधान
Scalar multiplication means multiplying each element by the scalar. 2A = [[2×3, 2×1], [2×2, 2×4]] = [[6, 2], [4, 8]].
स्केलर गुणन का मतलब प्रत्येक तत्व को स्केलर से गुणा करना है। 2A = [[2×3, 2×1], [2×2, 2×4]] = [[6, 2], [4, 8]]।

समाधान का रास्ता: 2A=2×[3124]=[6248]2A = 2 \times \begin{bmatrix} 3 & 1 \\ 2 & 4 \end{bmatrix} = \begin{bmatrix} 6 & 2 \\ 4 & 8 \end{bmatrix}। हर element × 2। Option (A) सही। Option (B) में सब elements +2 किए गए हैं — scalar addition नहीं multiplication।


आम गलतियाँ


संबंधित विषय

SarkariRise पर अभ्यास

Sign up + get 3 free mocks →