Topics
Relations and Functions
Relations and Functions
Algebra
Inverse Trigonometric Functions
Matrices
- Concept of Matrices
- Types of Matrices
- Equality of Matrices
- Operations on Matrices> Addition and Subtraction of Matrices
- Operations on Matrices>Scalar Multiplication
- Operations on Matrices> Matrix Multiplication
- Transpose of a Matrix
- Symmetric and Skew Symmetric Matrices
- Invertible Matrices
- Overview of Matrices
Calculus
Determinants
Vectors and Three-dimensional Geometry
Continuity and Differentiability
- Continuous and Discontinuous Functions
- Algebra of Continuous Functions
- Concept of Differentiability
- Derivatives of Composite Functions
- Derivative of Implicit Functions
- Derivative of Inverse Function
- Exponential and Logarithmic Functions
- Logarithmic Differentiation
- Derivatives of Functions in Parametric Forms
- Second Order Derivative
- Overview of Continuity and Differentiability
Linear Programming
Probability
Applications of Derivatives
Integrals
- Introduction of Integrals
- Integration as an Inverse Process of Differentiation
- Properties of Indefinite Integral
- Methods of Integration> Integration by Substitution
- Methods of Integration>Integration Using Trigonometric Identities
- Methods of Integration> Integration Using Partial Fraction
- Methods of Integration> Integration by Parts
- Integrals of Some Particular Functions
- Definite Integrals
- Fundamental Theorem of Integral Calculus
- Evaluation of Definite Integrals by Substitution
- Properties of Definite Integrals
- Overview of Integrals
Sets
Applications of the Integrals
Differential Equations
- Basic Concepts of Differential Equations
- Order and Degree of a Differential Equation
- General and Particular Solutions of a Differential Equation
- Methods of Solving Differential Equations> Variable Separable Differential Equations
- Methods of Solving Differential Equations> Homogeneous Differential Equations
- Methods of Solving Differential Equations>Linear Differential Equations
- Overview of Differential Equations
Vectors
- Basic Concepts of Vector Algebra
- Direction Ratios, Direction Cosine & Direction Angles
- Types of Vectors in Algebra
- Algebra of Vector Addition
- Multiplication in Vector Algebra
- Components of Vector in Algebra
- Vector Joining Two Points in Algebra
- Section Formula in Vector Algebra
- Product of Two Vectors
- Overview of Vectors
Three - Dimensional Geometry
Linear Programming
Probability
Introduction
A matrix is a rectangular arrangement of numbers in rows and columns. Matrices are classified into different types based on their order (number of rows and columns) and the nature of their elements. Understanding these types is essential for solving problems related to matrix operations, determinants, and linear algebra.
Types of Matrices
1. Column Matrix
-
A matrix with only one column is called a column matrix.
-
General form: \[A = [a_{ij}]_{m \times 1}\] where m is the number of rows.
-
Order: \[m \times 1\] (m rows, 1 column).
2. Row Matrix
-
A matrix with only one row is called a row matrix.
-
General form: \[B = [b_{ij}]_{1 \times n}\] where n is the number of columns.
-
Order: \[1 \times n\] (1 row, n columns).
3. Square Matrix
-
A matrix where number of rows equals number of columns is called a square matrix.
-
If m = n, the matrix is square of order n.
-
General form: \[A = [a_{ij}]_{n \times n}\].
-
The elements \[a_{11}, a_{22}, \dots, a_{nn}\] form the diagonal of the matrix.
4. Diagonal Matrix
-
A square matrix where all non-diagonal elements are zero.
-
Condition: \[b_{ij} = 0\] when \[i \neq j\].
-
Only diagonal elements (\[a_{11}, a_{22}, \dots, a_{nn}\]) can be non-zero.
-
Special case: All diagonal elements need not be equal.
5. Scalar Matrix
-
A diagonal matrix where all diagonal elements are equal to the same constant.
-
Condition: \[b_{ij} = 0\] when \[i \neq j\] and \[b_{ij} = k\] when \[i = j\] (k is a constant).
-
All diagonal positions contain the same value.
-
Relationship: Every scalar matrix is a diagonal matrix, but not vice versa.
6. Identity Matrix (Unit Matrix)
-
A square matrix with 1s on the diagonal and 0s elsewhere.
-
Condition: \[a_{ij} = 1\] if i = j and \[a_{ij} = 0\] if \[i \neq j\].
-
Denoted by \[I_n\] or simply I (when order is understood).
-
Relationship: An identity matrix is a scalar matrix with k = 1.
-
Special property: Multiplying any matrix by an identity matrix leaves it unchanged.
7. Zero Matrix (Null Matrix)
-
A matrix where all elements are zero.
-
Can be of any order (square or rectangular).
-
Denoted by O.
-
Acts as the additive identity in matrix algebra.
Key Points: Types of Matrices
| Matrix Type | Order | Key Property |
|---|---|---|
| Row Matrix | 1 × n | Only one row |
| Column Matrix | m × 1 | Only one column |
| Square Matrix | n × n | Rows = Column |
| Rectangular Matrix | m × n (m ≠ n) | Rows ≠ Columns |
| Diagonal Matrix | n × n | Square; non-diagonal elements = 0 |
| Scalar Matrix | n × n | Diagonal; all diagonal elements equal |
| Identity Matrix | n × n | Scalar matrix with diagonal = 1 |
| Zero Matrix | Any order | All elements = 0 |
| Upper Triangular Matrix | n × n | (aij = 0) for i > j |
| Lower Triangular Matrix | n × n | (aij = 0) for i < j |
| Strictly Triangular Matrix | n × n | No diagonal elements |
| Sub-Matrix | Smaller order | Must come from a matrix |
