Properties and Arithmetic (AQA A-Level Further Maths): Revision Notes
Properties and Arithmetic
Introduction to matrices
Matrices are a way of representing information in a form that can be manipulated mathematically. Vectors are a particular type of matrix.
Matrices provide a structured way to organize and perform calculations on large amounts of data simultaneously, making them essential tools in mathematics, science, and computing.
Matrix order
Matrix order describes the dimensions of a matrix using the number of rows and columns.
Key definition: A matrix with rows and columns has order .
Understanding Matrix Order
For example:
- The matrix has order (2 rows, 3 columns)
- The matrix has order (3 rows, 1 column)
The first number always refers to rows, and the second number always refers to columns. Think of it as "Row × Column" or "RC" to help remember the order.
Matrices are particularly useful in computing, where they are used to perform operations on multiple numbers simultaneously. This is especially important in computer graphics processing.
Matrix addition and subtraction
Matrix addition and subtraction can only be performed when certain conditions are met.
Key rule: If two matrices have the same order, then they can be added or subtracted by adding or subtracting their corresponding elements.
When adding or subtracting matrices, think of placing one matrix on top of the other and combining the elements that match in position.
Critical Rule: You cannot add or subtract matrices of different orders. Always check the order of matrices before attempting addition or subtraction.
Worked example: matrix addition and subtraction
Worked Example: Matrix Addition and Subtraction
Given three matrices:
We can analyse various operations:
Part a: Finding A + B
This is not possible because and do not have the same order. Matrix is while matrix is .
Part b: Finding A + C
Since both and have order , we can add them:
Add the corresponding elements:
Part c: Finding 2B
This involves scalar multiplication (covered in the next section).
Part d: Finding C - 3A
First, multiply matrix by 3, then subtract from :
This result is called a zero matrix.
Zero matrix
Key definition: The zero matrix, denoted , is a matrix of any order with all elements equal to zero.
The zero matrix acts like the number 0 in ordinary arithmetic. When you add the zero matrix to any matrix (of the same order), you get back: .
Scalar multiplication
Scalar multiplication involves multiplying a matrix by a single number (called a scalar).
Key rule: To multiply a matrix by a constant, multiply each of its elements by that constant.
Example: Scalar Multiplication
If , then:
Every element in the original matrix is multiplied by 2.
Matrix multiplication
Matrix multiplication is more complex than addition or subtraction, and follows different rules.
Conformability
Before multiplying two matrices, we must check if they are conformable for multiplication.
Key rule: Matrices can only be multiplied together if the number of columns in the first matrix equals the number of rows in the second matrix.
If two matrices can be multiplied, they are said to be conformable for multiplication.
Conformability Examples
- A matrix can be multiplied by a matrix (the middle numbers match)
- A matrix cannot be multiplied by a matrix (the middle numbers don't match)
Exam tip: Always check conformability before attempting matrix multiplication. A common error is trying to multiply non-conformable matrices.
Order of the product
Key rule: The product of an matrix and an matrix has order .
Notice that the "inside" dimensions (both ) must match, and they disappear in the result. The "outside" dimensions give the order of the product.
Process of matrix multiplication
When multiplying matrices, to find the element in the th row and th column of the product:
- Take the th row of the first matrix
- Take the th column of the second matrix
- Multiply corresponding elements together
- Add all these products
To find the first element (row 1, column 1) in the product:
- Use the first row of the first matrix
- Use the first column of the second matrix
- Multiply corresponding terms and add
Then move to row 1, column 2, and so on, working systematically through all positions.
Worked example: matrix multiplication
Worked Example: Matrix Multiplication
Given:
- (order )
- (order )
Part a: Finding AB
First, check conformability: has 2 columns and has 2 rows, so they are conformable.
The product will have order .
Calculate each element:
For the element in row 1, column 1:
For the element in row 1, column 2:
For the element in row 2, column 1:
For the element in row 2, column 2:
For the element in row 3, column 1:
For the element in row 3, column 2:
Therefore:
Notice that the product of a matrix and a matrix gives a matrix.
Part b: Finding BA
Matrix has 2 columns but matrix has 3 rows, so they are not conformable for multiplication in this order. Therefore, is not possible.
This demonstrates an important point: even if exists, may not exist.
Part c: Finding B²
means . This is only possible if is a square matrix (same number of rows and columns).
Critical Point: does not mean squaring each element. It means multiplying the matrix by itself.
It is only possible to find if is a square matrix (same number of rows as columns).
Exam tip: Some calculators can perform matrix multiplication. Learn how to use this feature on your calculator, but always show your working in exams.
Matrix transpose
The transpose of a matrix is a fundamental operation that swaps rows and columns.
Key definition: The transpose of a matrix is formed by swapping the rows and columns.
If we have a matrix , its transpose is denoted (sometimes written as ).
Example: Matrix Transpose
The transpose of is .
The first row of the original matrix becomes the first column of the transpose, and the second row becomes the second column.
If a matrix has order , its transpose has order .
Properties of transpose
Key property: For two matrices and :
Notice the order reverses when taking the transpose of a product. This is a critical property used in many matrix calculations.
Worked example: transpose properties
Worked Example: Transpose Properties
Given:
Find without first finding .
Solution:
Step 1: Write down the transpose of each matrix.
Step 2: Use the property .
Step 3: Multiply the matrices.
Properties of matrix operations
Understanding the properties of matrix operations helps with algebraic manipulation.
Associative property
Matrix addition is associative:
Matrix multiplication is associative:
This means when multiplying three or more matrices, we can group them in any order using brackets, and the result will be the same.
Worked example: proving associativity for 2 × 2 matrices
Worked Example: Proving Associativity
To prove the associative property for matrices, we use general matrices with subscript notation:
Let:
The proof involves:
- First calculating
- Then multiplying by to get
- Separately calculating
- Then multiplying by the result to get
- Showing both expressions are equal
This systematic approach works by expanding all the bracket multiplications and simplifying.
Commutative property
Matrix addition is commutative:
This means we can add matrices in any order.
However, matrix multiplication is NOT commutative: in general,
Critical Difference: This is a fundamental difference from ordinary number multiplication.
Exam warning: Never assume . This is a common error. Always check whether the multiplication is possible in both orders, and even if both and exist, they are usually different.
Distributive property
Matrix multiplication is distributive:
This allows us to expand brackets in matrix expressions, similar to ordinary algebra.
Solving equations with matrices
Matrices can be used to solve problems involving unknown elements or to represent systems of equations.
Worked example: finding unknown elements
Worked Example: Finding Unknown Elements
Given that , find the values of and .
Solution:
Step 1: Multiply the matrices on the left-hand side.
Step 2: Since the matrices are equal, equate corresponding elements.
This gives us two equations:
Step 3: Solve the equations simultaneously.
From the first equation:
Substitute into the second equation:
Therefore:
Exam tip: You can verify your answer using matrix multiplication on your calculator.
Matrix equations and systems of equations
Matrix equations can represent systems of simultaneous equations.
Worked example: writing systems as matrix equations
Worked Example: Writing Systems as Matrix Equations
Part a: Write the system and as a matrix equation.
The coefficient matrix contains the coefficients of and :
Part b: Write the system , , and as a matrix equation.
Notice that the number of variables determines the number of columns in the coefficient matrix, and the number of equations determines the number of rows:
Where is missing in the third equation, we use 0 as its coefficient.
Proof by induction with matrices
Proof by induction can be applied to matrix statements.
Worked example: matrix induction proof
Worked Example: Matrix Induction Proof
Prove by induction that for all positive integers .
Solution:
Step 1: Check the base case ()
When :
LHS:
RHS:
The statement is true for .
Step 2: Assume the statement is true for
Assume
Step 3: Prove it's true for
We need to show that
Starting with the left-hand side:
Using our assumption:
Multiply the matrices:
This is what we needed to show.
Step 4: Write the conclusion
Since the statement is true for , and assuming it's true for implies it's true for , the statement is true for all positive integers by mathematical induction.
Application: matrices with real-world data
Matrices are useful for organizing and analyzing real-world data.
Worked example: UK cities rainfall data
Worked Example: UK Cities Rainfall Data
The table shows the probabilities of a spring day being rainy in four UK cities:
| City | March | April | May |
|---|---|---|---|
| London | 0.32 | 0.30 | 0.29 |
| Edinburgh | 0.38 | 0.33 | 0.37 |
| Cardiff | 0.42 | 0.37 | 0.36 |
| Belfast | 0.45 | 0.38 | 0.38 |
Part a: Write a matrix to represent the table and a vector to represent the number of days in each month.
The matrix has cities as rows and months as columns:
The vector contains the number of days in each month (March has 31 days, April has 30, May has 31):
Part b: Show how to calculate the total number of rainy days expected in each city over the three months.
We multiply the matrix by the vector:
Calculate each element:
For London:
For Edinburgh:
For Cardiff:
For Belfast:
Therefore:
Conclusion: We expect a total of 28 rainy days in London, 33 in Edinburgh, 35 in Cardiff, and 37 in Belfast (answers to the nearest day).
This example shows how matrix multiplication can efficiently perform calculations on large datasets, demonstrating the practical power of matrices in data analysis.
General proof of transpose property
For conformable matrices , , and , we can prove that .
The proof uses the associative property of matrix multiplication and the result applied twice.
Starting with :
Step 1: Use associativity to write
Step 2: Take the transpose:
Step 3: Apply the transpose rule again:
This demonstrates how matrix properties can be combined to prove more complex results, showing the interconnected nature of matrix algebra.
Remember!
Key Points to Remember:
- Matrix order is n × m: Always state rows first, then columns (think "Row × Column")
- Conformability is essential: For matrix multiplication, the number of columns in the first matrix must equal the number of rows in the second
- Matrix multiplication is NOT commutative: In general, , and sometimes only one order is even possible
- Transpose reverses order: When taking the transpose of a product, reverse the order:
- Zero matrix equals zero everywhere: The zero matrix has all elements equal to zero and acts like 0 in addition