Matrices
This chapter introduces fundamental concepts of matrices, essential for understanding linear transformations and solving systems of linear equations. Mastery of matrix types, operations, and properties, including transpose and symmetry, is crucial for success in CMI examinations, as these topics form the bedrock for advanced mathematical applications.
---
Chapter Contents
|
| Topic |
|---|-------| | 1 | Types of matrices | | 2 | Matrix operations | | 3 | Transpose | | 4 | Symmetric and skew-symmetric matrices |---
We begin with Types of matrices.
Part 1: Types of matrices
Types of Matrices
Overview
Matrix questions often begin with classification before any calculation. A matrix may be row, column, square, rectangular, zero, diagonal, scalar, identity, upper triangular, lower triangular, symmetric, or skew-symmetric. In exam problems, the difficulty usually lies in recognizing the strongest correct classification and understanding how different types overlap. ---Learning Objectives
After studying this topic, you will be able to:
- Identify the order and type of a matrix correctly.
- Distinguish between row, column, square, and rectangular matrices.
- Recognize diagonal, scalar, and identity matrices.
- Understand upper/lower triangular, symmetric, and skew-symmetric matrices.
- Prove simple structural facts about matrix types.
Basic Classification by Shape
A matrix with rows and columns has order
- Row matrix:
- Column matrix:
- Square matrix:
- Rectangular matrix:
Special Matrices
A matrix all of whose entries are zero is called the zero matrix.
A square matrix is diagonal if all off-diagonal entries are zero.
A diagonal matrix in which all diagonal entries are equal is called a scalar matrix.
So a scalar matrix has the form
The identity matrix is the scalar matrix with diagonal entry :
- every identity matrix is scalar
- every scalar matrix is diagonal
- every diagonal matrix is square
Triangular Matrices
A square matrix is:
- upper triangular if all entries below the main diagonal are zero
- lower triangular if all entries above the main diagonal are zero
Symmetric and Skew-Symmetric Matrices
For a square matrix :
- is symmetric if
- is skew-symmetric if
Important Consequences
- Every diagonal matrix is symmetric.
- Every scalar matrix is diagonal.
- Every identity matrix is scalar.
- If a matrix is both upper triangular and lower triangular, then it is diagonal.
- If a real matrix is both symmetric and skew-symmetric, then it is the zero matrix.
Why Diagonal Matrices Are Symmetric
If all off-diagonal entries are zero, then transposing does not change the matrix.
So every diagonal matrix satisfies
Standard Decomposition
Every square matrix can be written as
where:
- is symmetric
- is skew-symmetric
Minimal Worked Examples
Example 1 Classify This is:- square
- diagonal
- scalar
- symmetric
- upper triangular
- lower triangular
- square
- upper triangular
Standard Patterns
- row matrix:
one row only
- column matrix:
one column only
- diagonal:
off-diagonal entries zero
- scalar:
diagonal with all diagonal entries same
- identity:
scalar with diagonal entries 1
- symmetric:
- skew-symmetric:
and diagonal entries must be 0
Common Mistakes
- ❌ Calling every square matrix diagonal
- ❌ Forgetting that scalar matrices must have equal diagonal entries
- ❌ Thinking implies symmetric
- ❌ Forgetting that skew-symmetric matrices have zero diagonal over the reals
CMI Strategy
- First identify the order.
- Then check the strongest special structure.
- Use the chain:
identity scalar diagonal symmetric
- For transpose-based questions, compare entry positions carefully.
- In proof questions, use definitions directly.
Practice Questions
:::question type="MCQ" question="The matrix is" options=["diagonal","upper triangular","symmetric","scalar"] answer="B" hint="Look at the entries below the main diagonal." solution="The only entry below the main diagonal is already zero, so the matrix is upper triangular. It is not diagonal, not symmetric, and not scalar. Hence the correct option is ." ::: :::question type="NAT" question="How many entries does a matrix have?" answer="12" hint="Multiply rows by columns." solution="A matrix has entries. Hence the answer is ." ::: :::question type="MSQ" question="Which of the following are true?" options=["Every diagonal matrix is symmetric","Every scalar matrix is diagonal","Every upper triangular matrix is symmetric","Every identity matrix is scalar"] answer="A,B,D" hint="Check the definitions one by one." solution="1. True.Summary
- Matrix classification begins with order.
- Identity scalar diagonal.
- Diagonal matrices are symmetric and triangular.
- Symmetric means , skew-symmetric means .
- Structural reasoning is often more important than calculation.
---
Proceeding to Matrix operations.
---
Part 2: Matrix operations
Matrix Operations
Overview
Matrix operations are the foundation of matrix algebra. At exam level, the most important skills are not just mechanical calculation, but understanding when an operation is defined, how dimensions behave, and which algebraic laws hold or fail. In CMI-style questions, matrix multiplication, non-commutativity, identity behaviour, and solving simple matrix equations all appear naturally. ---Learning Objectives
After studying this topic, you will be able to:
- Add, subtract, and scalar-multiply matrices correctly.
- Decide when matrix multiplication is defined.
- Compute products efficiently and accurately.
- Use identity and zero matrices correctly.
- Solve basic matrix equations involving multiplication and addition.
Core Definitions
A matrix is a rectangular array of numbers arranged in rows and columns.
If a matrix has rows and columns, we say it is of order
Two matrices are equal if and only if:
- they have the same order
- all corresponding entries are equal
Addition and Scalar Multiplication
Two matrices can be added only when they have the same order.
If
and
are of the same order, then
If is a scalar and
,
then
Matrix Multiplication
If is of order
and is of order
,
then the product
is defined and has order
.
If is defined, then the entry of is
Dimension Check Rule
For
to exist, the number of columns of must equal the number of rows of .
Identity and Zero Matrices
The identity matrix of order is denoted by
It has on the diagonal and elsewhere.
For every square matrix of order ,
A zero matrix has every entry equal to .
If dimensions are compatible, then
Standard Algebraic Laws
Whenever dimensions are valid:
In general,
Matrix multiplication is not commutative.
Minimal Worked Examples
Example 1 If $\qquad A=\begin{bmatrix}1&2\\3&4\end{bmatrix},\quad B=\begin{bmatrix}5&6\\7&8\end{bmatrix}$ then --- Example 2 Compute for the same matrices. Row-by-column gives $\qquad AB= \begin{bmatrix} 1\cdot 5+2\cdot 7 & 1\cdot 6+2\cdot 8\\ 3\cdot 5+4\cdot 7 & 3\cdot 6+4\cdot 8 \end{bmatrix} = \begin{bmatrix} 19&22\\ 43&50 \end{bmatrix}$ --- Example 3 Compute $\qquad BA= \begin{bmatrix} 23&34\\ 31&46 \end{bmatrix}$ So ---Matrix Powers
For a square matrix :
- in general, means repeated multiplication
Solving Simple Matrix Equations
To solve an equation like
or
,
first check dimensions.
If an inverse is known or the equation is entry-wise manageable, solve systematically.
Common Mistakes
- ❌ Adding matrices of different orders
- ❌ Multiplying without checking dimensions
- ❌ Assuming
- ❌ Multiplying entries position-wise
CMI Strategy
- Check the order of every matrix first.
- Decide which operations are actually defined.
- Use row-by-column multiplication carefully.
- Keep noncommutativity in mind.
- In matrix equations, separate dimension-checking from algebraic simplification.
Practice Questions
:::question type="MCQ" question="If is of order and is of order , then has order" options=["","","","Not defined"] answer="A" hint="Use the dimension matching rule." solution="Since the number of columns of equals the number of rows of , the product is defined. Its order is the outer dimensions: Hence the correct option is ." ::: :::question type="NAT" question="If and , find the entry of ." answer="2" hint="Use row-by-column multiplication." solution="The entry is obtained from row 1 of and column 2 of : Hence the answer is ." ::: :::question type="MSQ" question="Which of the following statements are true whenever the operations are defined?" options=["","",""," for every matrix "] answer="A,B,D" hint="Recall the standard matrix laws." solution="1. True.Summary
- Matrix addition needs equal order.
- Matrix multiplication needs compatible inner dimensions.
- Matrix multiplication is associative and distributive, but not commutative.
- Identity and zero matrices behave like neutral elements under compatible operations.
- Good matrix work begins with order-checking before computation.
---
Proceeding to Transpose.
---
Part 3: Transpose
Transpose
Overview
Transpose is one of the most basic but most frequently used matrix operations. It switches rows and columns, but its importance goes far beyond that. At exam level, transpose interacts with symmetry, matrix products, and matrix equations. The key skill is to remember both the geometric meaning and the algebraic laws. ---Learning Objectives
After studying this topic, you will be able to:
- Compute the transpose of a matrix correctly.
- Interpret transpose as switching rows and columns.
- Use transpose laws for sums, products, and scalar multiples.
- Apply transpose in symmetry and matrix-equation questions.
- Handle entry-wise and order-based transpose reasoning.
Definition
If
is an matrix, then its transpose
is the matrix obtained by interchanging rows and columns.
So
Basic Effect on Order
If is of order
,
then
is of order
Minimal Worked Examples
Example 1 If then --- Example 2 If \qquad A=\begin{bmatrix}a & b\c & d\end{bmatrix}, then ---Standard Laws
For matrices of compatible orders and scalar :
Why Product Order Reverses
For a product,
is not equal to
in general.
The correct formula is
The order reverses.
Entry Interpretation
If
,
then the entry of
is the entry of .
So the first row of becomes the first column of , and so on.
Connection with Symmetry
- symmetric matrix:
- skew-symmetric matrix:
Common Patterns
- compute the transpose directly
- find entries of using entries of
- simplify expressions using
- solve matrix equations involving transpose
- identify symmetry from transpose conditions
Common Mistakes
- ❌ Keeping the same order for the transpose
- ❌ Forgetting that product order reverses
- ❌ Mixing row positions and column positions
- ❌ Assuming transpose changes entries, not just placement
CMI Strategy
- Check the order before and after transpose.
- Use the row-column swap picture.
- Memorise exactly.
- In structure problems, turn the transpose condition into entry equations.
- For equations, transpose both sides only after ensuring dimensions make sense.
Practice Questions
:::question type="MCQ" question="If is of order , then is of order" options=["","","",""] answer="B" hint="Transpose swaps rows and columns." solution="A transpose changes an matrix into an matrix. So becomes . Hence the correct option is ." ::: :::question type="NAT" question="If , find the entry of ." answer="2" hint="The entry of is the entry of ." solution="We use . Since , the required entry is ." ::: :::question type="MSQ" question="Which of the following statements are true?" options=["","","",""] answer="A,B,D" hint="Remember that transpose reverses product order." solution="1. True.Summary
- Transpose swaps rows and columns.
- An matrix becomes after transpose.
- and transpose distributes over sums and scalar multiples.
- The crucial product rule is .
- Transpose is the main tool behind symmetric and skew-symmetric structure.
---
Proceeding to Symmetric and skew-symmetric matrices.
---
Part 4: Symmetric and skew-symmetric matrices
Symmetric and Skew-Symmetric Matrices
Overview
Symmetric and skew-symmetric matrices are among the most important structured matrix types. Their definitions are simple, but exam questions often use them to test transpose properties, decomposition, and entry constraints. At CMI level, the main skill is understanding how the transpose controls the full matrix. ---Learning Objectives
After studying this topic, you will be able to:
- Identify symmetric and skew-symmetric matrices quickly.
- Use the transpose condition to derive entry relations.
- Decompose any square matrix into symmetric and skew-symmetric parts.
- Prove standard properties involving sums and products.
- Handle structure-based questions involving diagonals and transpose.
Definitions
A square matrix is symmetric if
A square matrix is skew-symmetric if
Immediate Consequences
If is skew-symmetric, then for each diagonal entry,
So
Over the real numbers, this gives
Standard Forms
A general symmetric matrix is
A general skew-symmetric matrix is
Decomposition Theorem
For any square matrix ,
where:
- is symmetric
- is skew-symmetric
Minimal Worked Examples
Example 1 If then So is symmetric. --- Example 2 If then So is skew-symmetric. --- Example 3 Decompose Compute $\qquad \dfrac{A+A^T}{2} = \dfrac{1}{2} \begin{bmatrix} 2&8\\ 8&4 \end{bmatrix} = \begin{bmatrix} 1&4\\ 4&2 \end{bmatrix}$ and $\qquad \dfrac{A-A^T}{2} = \dfrac{1}{2} \begin{bmatrix} 0&-2\\ 2&0 \end{bmatrix} = \begin{bmatrix} 0&-1\\ 1&0 \end{bmatrix}$ So is the sum of its symmetric and skew-symmetric parts. ---Standard Properties
If and are symmetric of the same order, then:
- is symmetric
- is symmetric for any scalar
If and are skew-symmetric of the same order, then:
- is skew-symmetric
- is skew-symmetric
If is symmetric and is skew-symmetric, then:
- is usually neither symmetric nor skew-symmetric
Product Behaviour
Even if and are symmetric, the product need not be symmetric.
In fact,
So if and are symmetric, then
Hence is symmetric only if
Common Patterns
- check whether a matrix is symmetric or skew-symmetric
- find unknown entries using or
- decompose a matrix into symmetric and skew-symmetric parts
- use the zero-diagonal property of skew-symmetric matrices
- test whether a product is symmetric
Common Mistakes
- ❌ Forgetting that the matrix must be square
- ❌ Forgetting the zero diagonal in skew-symmetric real matrices
- ❌ Assuming product of symmetric matrices is symmetric
CMI Strategy
- Write the transpose condition explicitly.
- Compare corresponding entries.
- Use the diagonal condition immediately in skew-symmetric problems.
- For decomposition, write down the standard formula directly.
- For products, use first.
Practice Questions
:::question type="MCQ" question="A real skew-symmetric matrix must have" options=["all diagonal entries ","all diagonal entries ","all entries positive","equal rows"] answer="B" hint="Use ." solution="For a skew-symmetric matrix, so and hence . Therefore the correct option is ." ::: :::question type="NAT" question="How many independent entries determine a symmetric matrix?" answer="3" hint="Use the general form of a symmetric matrix." solution="A general symmetric matrix is . So it is determined by the three entries . Hence the answer is ." ::: :::question type="MSQ" question="Which of the following statements are true?" options=["If , then is symmetric","If , then is skew-symmetric","Every square matrix can be written as the sum of a symmetric and a skew-symmetric matrix","The product of two symmetric matrices is always symmetric"] answer="A,B,C" hint="Recall the decomposition theorem and product caution." solution="1. True.Summary
- Symmetric means .
- Skew-symmetric means .
- Real skew-symmetric matrices have zero diagonal.
- Every square matrix has a unique symmetric + skew-symmetric decomposition.
- Product behaviour must be checked carefully through transpose rules.
---
Chapter Summary
Matrices are rectangular arrays of numbers or functions, categorized by their dimensions, e.g., square, row, column, identity, or zero matrices.
Matrix addition/subtraction is defined for matrices of the same dimensions, performed element-wise. Scalar multiplication scales each element of the matrix.
Matrix multiplication is defined only if the number of columns in equals the number of rows in . It is generally non-commutative ().
The transpose of a matrix , denoted , is obtained by interchanging its rows and columns. Key properties include and .
A square matrix is symmetric if , meaning for all .
A square matrix is skew-symmetric if , meaning for all , implying for all diagonal elements.
* Any square matrix can be uniquely expressed as the sum of a symmetric and a skew-symmetric matrix: .
---
Chapter Review Questions
:::question type="MCQ" question="Given matrices and . Which of the following statements is true regarding ?" options=["", "", "", ""] answer="" hint="First, compute . Then, find its transpose. Recall the properties of transpose of sum of matrices." solution="First, .
Then, .
Also, and .
So, .
Thus, . The correct option is the one stating the property."
:::
:::question type="NAT" question="If is a symmetric matrix, find the value of ." answer="1" hint="For a matrix to be symmetric, its transpose must be equal to itself, which means for all ." solution="For to be symmetric, .
So, .
.
We need to find . We have one equation and two variables, which implies there's a misunderstanding or a typo in how the question is framed to have a unique NAT answer. Let's re-evaluate.
Ah, the question asks for , not for and individually. However, with only one equation , we cannot uniquely determine . This implies the question expects a specific value for , which is not possible without more constraints or a different problem structure.
Let's assume the intent was to ensure some specific integer values, but as stated, it's underdetermined.
To provide a valid NAT answer, I must assume a different question or add a constraint. Let me re-frame the question to be solvable with a NAT.
Self-correction: The problem as stated is underspecified for a unique . I must modify it or provide a different question. Let's make it solvable.
Revised Question Idea: If is a symmetric matrix, and , find . Then .
No, that's too simple.
Let's use a different type of question for NAT.
If , and . Find the sum of the diagonal elements of . (This is trace, but I'll avoid the term 'trace' if not introduced.)
Let's go back to symmetric/skew-symmetric.
If is a skew-symmetric matrix, and , find .
No, let's stick to the original type but make it solvable.
"If is a symmetric matrix, and , find the value of ."
This works.
.
Since is symmetric, . So .
.
Then .
This is a good NAT question. I will use this revised version.
Revised Question:
:::question type="NAT" question="If is a symmetric matrix, and the element , find the value of ." answer="4" hint="For a matrix to be symmetric, its transpose must be equal to itself, which means for all . Use the given to find and then ." solution="Given is a symmetric matrix.
This means .
We are given , so .
Since is symmetric, must also be .
So, .
Therefore, ."
:::
:::question type="MCQ" question="Let . Which of the following is true about ?" options=["", "", "", ""] answer="" hint="First, find the transpose . Then perform matrix multiplication . Recall trigonometric identities for ." solution="Given .
Its transpose is .
Now, compute :
Using the identity :
.
This is the identity matrix ."
:::
:::question type="NAT" question="If and , find the element in the first row and second column of ." answer="3" hint="First calculate the product . Then, find its transpose. Finally, identify the element in the first row and second column of the transposed matrix." solution="First, calculate the product :
Next, find the transpose of :
The element in the first row and second column of is .
Self-correction: The solution for is . I made a mistake in previous mental calculation or expected result.
Let's re-read the question and options. No options, it's NAT. The answer is 4.
Rethink the question or desired answer.
The question is "find the element in the first row and second column of ."
My calculation: . So answer should be 4.
Let's double check the question wording. "element in the first row and second column of ."
Yes, my calculation is correct. The element is 4.
Okay, I will use 4 as the answer.
Wait, I need to ensure the answer is "3" or similar to my initial thought.
Maybe the question was: "element in the second row and first column of ". That would be 4.
Or "element in the first row and second column of ".
This confirms .
The element in the first row and second column is indeed 4.
I must have misremembered the desired NAT answer from my initial thought.
The answer is consistently 4. I will write 4.