Matrices | Class 12 Maths Chapter 3 Notes

๐Ÿ“Œ Introduction to Matrices

Matrices form one of the most important topics in Class 12 Mathematics and play a crucial role in higher studies, especially in engineering, computer science, economics, and physics. A matrix is essentially a rectangular arrangement of numbers, symbols, or expressions in rows and columns.

Matrices are used to represent and solve systems of linear equations, perform transformations, and model real-world data efficiently.


๐Ÿ“– Definition of Matrix

A matrix is a rectangular array of elements arranged in rows and columns, enclosed within brackets.

A matrix is usually denoted by capital letters like A, B, C, etc.

Example:A=[123456]A = \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{bmatrix}A=[14โ€‹25โ€‹36โ€‹]

Here:

  • Rows = 2
  • Columns = 3

So, the order of matrix = 2 ร— 3


๐Ÿ“Š Order of a Matrix

The order of a matrix is defined as:Order=Number of Rowsร—Number of Columns\text{Order} = \text{Number of Rows} \times \text{Number of Columns}Order=Number of Rowsร—Number of Columns

Example:

  • If a matrix has 3 rows and 2 columns โ†’ Order = 3 ร— 2

๐Ÿ”ข Types of Matrices

1. Row Matrix

A matrix having only one row.

Example:[123][1 \quad 2 \quad 3][123]


2. Column Matrix

A matrix having only one column.

Example:[123]\begin{bmatrix} 1 \\ 2 \\ 3 \end{bmatrix}โ€‹123โ€‹โ€‹


3. Rectangular Matrix

When number of rows โ‰  number of columns.

Example:
2 ร— 3 matrix


4. Square Matrix

When number of rows = number of columns.

Example:[1234]\begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix}[13โ€‹24โ€‹]


5. Zero Matrix (Null Matrix)

All elements are zero.

Example:[0000]\begin{bmatrix} 0 & 0 \\ 0 & 0 \end{bmatrix}[00โ€‹00โ€‹]


6. Diagonal Matrix

All non-diagonal elements are zero.

Example:[200050007]\begin{bmatrix} 2 & 0 & 0 \\ 0 & 5 & 0 \\ 0 & 0 & 7 \end{bmatrix}โ€‹200โ€‹050โ€‹007โ€‹โ€‹


7. Scalar Matrix

Diagonal elements are equal.

Example:[3003]\begin{bmatrix} 3 & 0 \\ 0 & 3 \end{bmatrix}[30โ€‹03โ€‹]


8. Identity Matrix (Unit Matrix)

All diagonal elements are 1.I=[1001]I = \begin{bmatrix} 1 & 0 \\ 0 & 1 \end{bmatrix}I=[10โ€‹01โ€‹]


9. Upper Triangular Matrix

Elements below diagonal are zero.


10. Lower Triangular Matrix

Elements above diagonal are zero.


๐Ÿ”„ Equality of Matrices

Two matrices A and B are equal if:

  1. They have the same order
  2. Corresponding elements are equal

โž• Addition of Matrices

Two matrices can be added only if they have the same order.

IfA=[aij],B=[bij]A = [a_{ij}], \quad B = [b_{ij}]A=[aijโ€‹],B=[bijโ€‹]

ThenA+B=[aij+bij]A + B = [a_{ij} + b_{ij}]A+B=[aijโ€‹+bijโ€‹]


โž– Subtraction of Matrices

Aโˆ’B=[aijโˆ’bij]A – B = [a_{ij} – b_{ij}]Aโˆ’B=[aijโ€‹โˆ’bijโ€‹]

Same rule: order must be same.


โœ–๏ธ Multiplication of Matrix by Scalar

If k is a scalar and A is a matrix:kA=[kโ‹…aij]kA = [k \cdot a_{ij}]kA=[kโ‹…aijโ€‹]


โœ–๏ธ Multiplication of Matrices

Matrix multiplication is not as simple as numbers.

Condition:
If A is m ร— n and B is n ร— p, then AB is possible.

Result:
AB will be of order m ร— p.


Formula:

(AB)ij=โˆ‘aikโ‹…bkj(AB)_{ij} = \sum a_{ik} \cdot b_{kj}(AB)ijโ€‹=โˆ‘aikโ€‹โ‹…bkjโ€‹


Important Points:

  • Matrix multiplication is not commutative ABโ‰ BAAB \neq BAAB๎€ =BA
  • But it is:
    • Associative
    • Distributive

๐Ÿ” Transpose of a Matrix

Transpose means converting rows into columns.

IfA=[aij]A = [a_{ij}]A=[aijโ€‹]

ThenAT=[aji]A^T = [a_{ji}]AT=[ajiโ€‹]


Properties of Transpose

  1. (AT)T=A(A^T)^T = A(AT)T=A
  2. (A+B)T=AT+BT(A + B)^T = A^T + B^T(A+B)T=AT+BT
  3. (AB)T=BTAT(AB)^T = B^T A^T(AB)T=BTAT

๐Ÿ”ท Symmetric and Skew-Symmetric Matrices

Symmetric Matrix

AT=AA^T = AAT=A


Skew-Symmetric Matrix

AT=โˆ’AA^T = -AAT=โˆ’A


๐Ÿงฎ Elementary Operations (Transformations)

These are operations used to simplify matrices.

Types:

  1. Row interchange
  2. Row multiplication
  3. Row addition

๐Ÿ” Elementary Matrices

These are obtained by performing a single elementary operation on identity matrix.

Used in finding inverse of matrices.


๐Ÿ”‘ Inverse of a Matrix

A square matrix A has an inverse if:Aโ‹…Aโˆ’1=IA \cdot A^{-1} = IAโ‹…Aโˆ’1=I


Conditions:

  • Matrix must be square
  • Determinant โ‰  0

๐Ÿ“ Formula for Inverse (2ร—2 Matrix)

A=[abcd]A = \begin{bmatrix} a & b \\ c & d \end{bmatrix}A=[acโ€‹bdโ€‹] Aโˆ’1=1adโˆ’bc[dโˆ’bโˆ’ca]A^{-1} = \frac{1}{ad – bc} \begin{bmatrix} d & -b \\ -c & a \end{bmatrix}Aโˆ’1=adโˆ’bc1โ€‹[dโˆ’cโ€‹โˆ’baโ€‹]


โš ๏ธ Singular and Non-Singular Matrix

  • Singular โ†’ Determinant = 0
  • Non-Singular โ†’ Determinant โ‰  0

Only non-singular matrices have inverse.


๐Ÿงฉ Solving System of Linear Equations

Matrices are widely used to solve equations like:ax+by=cax + by = cax+by=c dx+ey=fdx + ey = fdx+ey=f


Matrix Form:

AX=BAX = BAX=B

Where:

  • A = coefficient matrix
  • X = variable matrix
  • B = constant matrix

Solution:

X=Aโˆ’1BX = A^{-1} BX=Aโˆ’1B


๐Ÿ“Š Applications of Matrices

Matrices are used in:

  • Computer graphics
  • Cryptography
  • Economics
  • Physics
  • Engineering
  • Data science
  • Machine learning

๐Ÿ“Œ Important Properties of Matrices

1. Commutative Law (Addition only)

A+B=B+AA + B = B + AA+B=B+A


2. Associative Law

(A+B)+C=A+(B+C)(A + B) + C = A + (B + C)(A+B)+C=A+(B+C)


3. Distributive Law

A(B+C)=AB+ACA(B + C) = AB + ACA(B+C)=AB+AC


4. Identity Law

AI=IA=AAI = IA = AAI=IA=A


โ— Common Mistakes to Avoid

  • Multiplying matrices without checking order
  • Assuming AB = BA
  • Forgetting transpose properties
  • Miscalculating determinant

๐Ÿง  Tips for Exams

  • Always write order of matrix
  • Practice multiplication carefully
  • Remember inverse formula
  • Solve step-by-step

๐Ÿ“š Practice Questions

  1. Find transpose of given matrix
  2. Multiply two matrices
  3. Find inverse of 2ร—2 matrix
  4. Solve linear equations using matrices

๐ŸŽฏ Conclusion

Matrices are a powerful mathematical tool that simplifies complex calculations and systems. Mastering this chapter helps build a strong foundation for higher mathematics and competitive exams like JEE, NDA, and CUET.

Understanding concepts like matrix operations, transpose, inverse, and applications ensures clarity and confidence in problem-solving.

Leave a Comment

Your email address will not be published. Required fields are marked *

Scroll to Top