Applications of Matrices (VCE SSCE General Mathematics): Revision Notes
Applications of Matrices
Introduction
Matrices provide a powerful way to organize and process data. When information is stored in matrix form, we can use matrix multiplication to extract new, useful results from the original data. This technique is particularly valuable in business contexts, data analysis, and situations where we need to combine different types of information efficiently.
Matrix multiplication isn't just a mathematical operation—it's a practical tool that allows us to combine different datasets and calculate meaningful totals in a single, efficient operation. This makes matrices essential in business analytics, scientific research, and data processing.
Business applications of matrices
Calculating sales and promotions
Matrices are commonly used in business to combine different types of data and calculate totals. When we organize sales quantities and price information into separate matrices, multiplying them together automatically calculates total revenue and other business metrics.
Worked Example: Store Sales with Promotions
Scenario: A store runs a promotion where customers receive free cinema tickets with their purchases. We need to calculate total sales revenue and the number of tickets distributed.
Setting up the problem:
We use two matrices to organize our information:
Matrix represents sales data (who sold what):
- Rows represent different salespeople
- Columns represent different products
Matrix represents product information:
- Rows represent different products
- Columns represent price and promotional items
The specific case:
Freddy and George work at a store selling DVDs and games. The promotion gives:
- One free cinema ticket with each DVD purchased
- Two free cinema tickets with each game purchased
The sales data is organized in matrix :
where rows represent Freddy and George, columns represent DVDs and Games.
The price and ticket data is organized in matrix :
where rows represent DVDs and Games, columns represent price ($) and tickets.
Calculating the results:
To find total sales and tickets distributed, we multiply :
Step-by-step multiplication:
First row (Freddy's results):
- Sales:
- Tickets:
Second row (George's results):
- Sales:
- Tickets:
Interpreting the results:
The resulting matrix tells us:
- Freddy had total sales of $260 and distributed 15 cinema tickets
- George had total sales of $280 and distributed 17 cinema tickets
This demonstrates how matrix multiplication combines sales quantities with prices and promotion details to calculate meaningful business totals in a single operation.
Practice opportunity: Try calculating similar results for Jacky and Peter's store, which sells drinks ($4 each, 1 ticket) and hamburgers ($12 each, 2 tickets), where Jacky sold 3 drinks and 10 hamburgers, while Peter sold 6 drinks and 8 hamburgers.

Extracting information using row and column matrices
Understanding row and column matrices
Row and column matrices are special matrices that contain just one row or one column. These simple matrices have a powerful property: they can efficiently extract summary information from larger data matrices.
Key definitions:
- A row matrix has dimensions (one row, multiple columns)
- A column matrix has dimensions (multiple rows, one column)
The beauty of row and column matrices is their simplicity. By filling them with 1s, we create powerful tools for calculating totals. A column matrix of 1s acts like a "sum each row" command, while a row matrix of 1s acts like a "sum each column" command.
Using column matrices to calculate row sums
When we multiply a data matrix by a column matrix containing all 1s (on the right side), the result gives us the sum of each row in the original matrix. This operation efficiently calculates row totals without manual addition.
Using row matrices to calculate column sums
When we multiply a row matrix containing all 1s by a data matrix (on the left side), the result gives us the sum of each column in the original matrix. This provides quick access to column totals across the entire dataset.
Worked Example: Wildlife Survey Data
Scenario: Three park rangers survey feral animal sightings monthly and record their observations.
The sightings data is stored in matrix :
where rows represent Aaron, Barry, and Chloe, and columns represent cats, dogs, foxes, and rabbits.
We'll use two special matrices:
(row matrix)
(column matrix)
Part 1: Finding row sums with a column matrix
Calculate :
Working through each row:
Interpretation: Each element in gives the sum of the corresponding row in . This tells us the total number of animal sightings made by each ranger:
- Aaron: 129 total sightings
- Barry: 132 total sightings
- Chloe: 116 total sightings
Part 2: Finding column sums with a row matrix
Calculate :
Working through each column:
Interpretation: Each element in gives the sum of the corresponding column in . This tells us the total number of sightings for each type of animal across all rangers:
- Cats: 80 total sightings
- Dogs: 30 total sightings
- Foxes: 90 total sightings
- Rabbits: 177 total sightings
Why this works:
When we multiply by a column matrix of 1s on the right, each element in the result equals one row from the original matrix multiplied by all 1s, which is simply the sum of that row.
When we multiply by a row matrix of 1s on the left, each element in the result equals the row of 1s multiplied by one column from the original matrix, which is simply the sum of that column.
This provides an efficient way to calculate totals without manually adding up rows or columns.
Remember the pattern: Column matrix on the RIGHT gives ROW sums (), and row matrix on the LEFT gives COLUMN sums ().
A common mistake is to confuse which position gives which type of sum. Think of it this way: the column matrix is tall (like columns), but it sums the rows when placed on the right!
Practice opportunity: Try applying this technique to calculate total TV watching time for four students (Beth, Zara, Aria, Wanda) across five weekdays (Monday through Friday).
Summary
Matrices provide efficient methods for organizing, combining, and analyzing data. Matrix multiplication allows us to:
- Combine different types of information (such as sales quantities and prices) to calculate totals
- Use row and column matrices to quickly extract row sums and column sums from large data sets
- Perform multiple calculations simultaneously in a single matrix operation
These techniques are particularly valuable in business applications, data analysis, and any situation where structured data needs to be processed efficiently.
Key Points to Remember:
- When organizing data in matrices, matrix multiplication can combine information and produce useful results
- In business applications, multiplying sales data by price data calculates total revenue
- A column matrix of 1s multiplied on the right () gives the sum of each row
- A row matrix of 1s multiplied on the left () gives the sum of each column
- Always interpret your results in context—what do the numbers in the resulting matrix actually represent?