๐ 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=[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
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]
2. Column Matrix
A matrix having only one column.
Example:โ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:[13โ24โ]
5. Zero Matrix (Null Matrix)
All elements are zero.
Example:[00โ00โ]
6. Diagonal Matrix
All non-diagonal elements are zero.
Example:โ200โ050โ007โโ
7. Scalar Matrix
Diagonal elements are equal.
Example:[30โ03โ]
8. Identity Matrix (Unit Matrix)
All diagonal elements are 1.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:
- They have the same order
- Corresponding elements are equal
โ Addition of Matrices
Two matrices can be added only if they have the same order.
IfA=[aijโ],B=[bijโ]
ThenA+B=[aijโ+bijโ]
โ Subtraction of Matrices
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โ]
โ๏ธ 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โ
Important Points:
- Matrix multiplication is not commutative AB๎ =BA
- But it is:
- Associative
- Distributive
๐ Transpose of a Matrix
Transpose means converting rows into columns.
IfA=[aijโ]
ThenAT=[ajiโ]
Properties of Transpose
- (AT)T=A
- (A+B)T=AT+BT
- (AB)T=BTAT
๐ท Symmetric and Skew-Symmetric Matrices
Symmetric Matrix
AT=A
Skew-Symmetric Matrix
AT=โA
๐งฎ Elementary Operations (Transformations)
These are operations used to simplify matrices.
Types:
- Row interchange
- Row multiplication
- 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=I
Conditions:
- Matrix must be square
- Determinant โ 0
๐ Formula for Inverse (2ร2 Matrix)
A=[acโbdโ] 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=c dx+ey=f
Matrix Form:
AX=B
Where:
- A = coefficient matrix
- X = variable matrix
- B = constant matrix
Solution:
X=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+A
2. Associative Law
(A+B)+C=A+(B+C)
3. Distributive Law
A(B+C)=AB+AC
4. Identity Law
AI=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
- Find transpose of given matrix
- Multiply two matrices
- Find inverse of 2ร2 matrix
- 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.