SSC CHSL के लिए Matrix (आव्यूह): determinant, transpose, गुणन — सम्पूर्ण अध्ययन
intermediate18 min read
अवधारणा
Matrix यानी आव्यूह — संख्याओं की एक व्यवस्थित आयताकार तालिका। सोचो जैसे तुम्हारे स्कूल की time-table थी: हर row में एक दिन, हर column में एक period — यही matrix का ढाँचा है।
गणित में matrix को brackets [ ] में लिखते हैं। इसकी order बताती है कि उसमें कितनी पंक्तियाँ (rows) और कितने स्तंभ (columns) हैं।
उदाहरण:
A=[5321]
यह एक 2×2 matrix है — 2 rows, 2 columns।
SSC CHSL में matrix के जो प्रश्न आते हैं, वे मुख्यतः इन पाँच कार्यों पर टिके होते हैं:
Matrix गुणन (Multiplication) — order की शर्त और dot-product
Trace — diagonal elements का योग
यह विषय बीजगणित का एक ऐसा हिस्सा है जहाँ concept साफ़ हो तो हर प्रश्न 30-45 seconds में हल होता है। कोई "calculation-heavy" नहीं — बस नियम याद रखो और सही जगह लगाओ।
एक बड़ी बात: Matrix गुणन में क्रम मायने रखता है — AB=BA अधिकतर। यह arithmetic के सामान्य गुणन से अलग है और परीक्षा में यही trap होता है।
गहन विश्लेषण
Matrix की Order (क्रम)
Matrix A की order m×n का अर्थ है: m rows और n columns।
Matrix गुणन की शर्त:A(m×n)×B(n×p)=AB(m×p)
देखो — पहली matrix का columns-count = दूसरी matrix का rows-count होना ज़रूरी है। परिणाम की order = पहली का m और दूसरी का p।
उदाहरण: A(3×2) और B(2×4) → AB(3×4)
मध्य की संख्याएँ (2 और 2) cancel हो जाती हैं, बाहरी संख्याएँ (3 और 4) परिणाम देती हैं।
Matrix Addition और Scalar Multiplication
Addition: केवल समान order की matrices जोड़ी जा सकती हैं, element-by-element।
[acbd]+[egfh]=[a+ec+gb+fd+h]
Scalar गुणन: हर element को scalar k से गुणा करो।
k⋅[acbd]=[kakckbkd]
ऋणात्मक matrix (−A): हर element का चिह्न बदल दो — यही (−1)⋅A है।
−[13−24]=[−1−32−4]
ध्यान रखो: negative के बाद जो पहले negative था, वह positive हो जाता है।
Transpose (परिवर्त)
Transpose में rows और columns की अदला-बदली होती है। Matrix A का transpose AT कहलाता है।
A=[142536]2×3⇒AT=1234563×2
नियम: A का element aij, AT में aji बन जाता है। यानी पहली row → पहली column, दूसरी row → दूसरी column।
Determinant (निर्धारक) — 2×2
यह SSC CHSL में सबसे ज़्यादा पूछा जाने वाला नियम है। बस एक formula:
det[acbd]=ad−bc
यानी: diagonal गुणनफल का अंतर।
det[5321]=(5×1)−(2×3)=5−6=−1
याद करने का तरीका: "forward diagonal minus backward diagonal" — ↘ minus ↙।
Trace (अनुरेख)
Trace = matrix के मुख्य diagonal (top-left से bottom-right) के सभी elements का योग।
trace204536178=2+3+8=13
केवल a11+a22+a33+… — बाकी सब elements को ignore करो।
Matrix Multiplication — संक्षिप्त विधि
AB निकालने के लिए: A की हर row को B के हर column से dot-product करो।
[2648]×[1537]
(1,1) element: (2)(1)+(4)(5)=2+20=22
(1,2) element: (2)(3)+(4)(7)=6+28=34
(2,1) element: (6)(1)+(8)(5)=6+40=46
(2,2) element: (6)(3)+(8)(7)=18+56=74
SSC CHSL में matrix multiplication का सीधा computation कम पूछा जाता है — order पूछना ज़्यादा common है।
शॉर्टकट और युक्तियाँ
patternDeterminant: 'X से काटो' तकनीक
2×2 matrix देखते ही mentally एक X बनाओ। X का forward diagonal (↘) पहले गुणा करो, backward diagonal (↙) बाद में। Subtract करो — बस।
Matrix [5321]: 5×1=5, फिर 2×3=6, अंत में 5−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), B(2×4): लिखो 32⋅24 — बीच के 2-2 cancel, बाहर 3×4 बचा।
विकल्पों में से गलत orders तुरंत eliminate: standard method में calculation करते हो, यहाँ सीधे 5 seconds में answer। 4 steps → 1 step।
patternTrace: 'बाएँ-से-दाएँ तिरछी लकीर' पकड़ो
3×3 या बड़ी matrix में trace निकालना हो तो आँखें सीधे a11, a22, a33 पर ले जाओ — diagonal पर एक तिरछी रेखा mentally खींचो और वे elements जोड़ो, बाकी सब ignore।
पूरे matrix को scan करने में: 20 seconds। Diagonal-only trick: 6 seconds। Step-count: 9 elements scan → 3 elements scan।
eliminationNegative Matrix: 'जो था उसका उल्टा'
−A निकालते समय options में जाओ — जो element originally positive था वह negative होगा, जो negative था वह positive होगा। एक भी element गलत हो तो option तुरंत eliminate।
A=[13−24] → −A में −2 का चिह्न बदलने पर +2 होगा। जो option −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=[142536] → AT की पहली column 123 होगी। जो option यह नहीं दिखाता, eliminate।
Full transpose लिखने में: 35 seconds। First-column check: 8 seconds।
तेज़-समाधान रूपरेखा
परीक्षा-हॉल में matrix का प्रश्न देखते ही यह flow अपनाओ:
चरण 1: प्रश्न में क्या माँगा है — determinant, trace, transpose, addition, multiplication, या order?
चरण 2 (Operation के अनुसार):
Determinant → ad−bc सीधे लगाओ। Result negative भी हो सकता है — घबराओ मत।
Trace → Diagonal elements (a11+a22+…) जोड़ो, बाकी ignore।
Addition → Element-by-element जोड़ो। Same order ज़रूरी।
Scalar multiplication → हर element × scalar।
−A → हर element का चिह्न पलटो।
Order of AB → बीच वाले cancel, बाहरी बचे।
चरण 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
11
16
-1
1
11
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)=5−6=−1। X-technique: forward 5×1=5, backward 2×3=6, subtract =−1। Options में −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 क्या होगी?
2×3
3×4
2×4
3×2
2×3
3×4
2×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) → बीच के 2-2 cancel → AB(3×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 का सूत्र क्या होता है?
a + b + c + d
ad - bc
ac - bd
ab - cd
a + b + c + d
ad - bc
ac - bd
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 ad−bc है। Option (B) सीधे सही। अन्य options — a+b+c+d trace जैसा है, ac−bd और ab−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?
[[3, 7], [11, 15]]
[[2, 12], [30, 56]]
[[1, 1], [1, 1]]
[[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+B: [2+16+54+38+7]=[311715]। पहला element 3 check करो → option (A) में 3 है, बाकी सब गलत। Confirm: 4+3=7, 6+5=11, 8+7=15। Answer (A)।
क्यों यह प्रश्न:−A का concept — negative sign के साथ चिह्न-परिवर्तन का नियम।
Previous Year Questionपिछले वर्ष का प्रश्न
If matrix A = [[1, -2], [3, 4]], what is -A?
[[-1, 2], [-3, -4]]
[[1, 2], [3, 4]]
[[-1, -2], [3, 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=[13−24] → −A=[−1−3+2−4]। Eliminate technique: option (B) में +2 की जगह +2 है पर 1 positive रहा — गलत। Option (C) में पहला row गलत। Option (D) पूरी तरह अलग। Option (A) = [−1−32−4] — सही।
क्यों यह प्रश्न: Trace — 3×3 matrix में, जहाँ candidates सब elements जोड़ने की गलती करते हैं।
Previous Year Questionपिछले वर्ष का प्रश्न
What is the trace of matrix [[2, 5, 1], [0, 3, 7], [4, 6, 8]]?
13
15
36
11
Solutionसमाधान
Trace of a matrix is the sum of diagonal elements. Trace = 2 + 3 + 8 = 13.
मैट्रिक्स का ट्रेस विकर्ण तत्वों का योग है। ट्रेस = 2 + 3 + 8 = 13।
समाधान का रास्ता: Diagonal elements: 2 (position 1,1), 3 (position 2,2), 8 (position 3,3)। Trace =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, 4], [2, 5], [3, 6]]
[[6, 5, 4], [3, 2, 1]]
[[1, 2, 3], [4, 5, 6]]
[[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=[142536]2×3 → AT की order 3×2 होगी। पहली row [1,2,3] → पहला column 123। Option (A) = 123456 — सही। 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?
[[6, 2], [4, 8]]
[[5, 3], [4, 6]]
[[3, 2], [1, 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×[3214]=[6428]। हर element × 2। Option (A) सही। Option (B) में सब elements +2 किए गए हैं — scalar addition नहीं multiplication।
आम गलतियाँ
Determinant में चिह्न की गलती:ad−bc है, bc−ad नहीं। Result negative आने पर घबराकर sign मत पलटो — −1 एक valid determinant है।
Matrix multiplication में order गलत लगाना:A(3×2)×B(2×4) में candidates कभी-कभी 2×2 या 3×2 लिखते हैं। याद रखो: मध्य cancel, बाहरी बचे।
Transpose में rows उलटना: Transpose में rows-columns बदलते हैं, rows का क्रम नहीं। AT में पहली row पहला column बनती है — पहली row आखिरी column नहीं।
Trace में सब elements जोड़ देना: 3×3 matrix में 9 elements होते हैं — trace सिर्फ 3 diagonal elements का योग है। बाकी 6 को completely ignore करो।
−A में सिर्फ positive elements का चिह्न बदलना:−A में हर element का चिह्न बदलता है — जो पहले negative था वह positive होता है। यह trap candidates से −2→+2 miss करवाता है।
Matrix addition में गुणा करना: Addition प्रश्न में जो option गुणनफल जैसा दिखे, वह trap है — [[2×1,4×3],...] जैसे विकल्प misleading होते हैं। Addition सदा element-by-element जोड़ है।