Science Laboratory Technology  ·  Level 6
Basic Mathematics For Science
Chapter 9: Apply matrices
📚 4 Topics
What you will be able to do

By the end of this chapter, you will be able to:

  • Understand the concept of rate of change in different contexts.
  • Apply differentiation rules correctly to find the rate of change.
  • Calculate derivatives of various functions accurately.
  • Interpret the meaning of the rate of change in real-world problems.
  • Solve problems involving rate of change with confidence.

Mastering this skill helps you analyze and predict changes in many technical and scientific fields, making you a valuable problem solver in your trade.

Matrices are essential mathematical tools in science laboratory technology for organizing, analyzing, and solving systems of linear equations that arise in experiments and data processing. They allow laboratory professionals to handle complex data sets, perform transformations, and model interactions in chemical analysis, quality control, and instrumentation calibration. Mastery of matrices equips technologists with the ability to apply computational methods efficiently, enhancing accuracy and reliability in laboratory results.

9.1 Introduction to matrices

Matrices provide a compact way to represent and manipulate data arranged in rows and columns, widely used in scientific calculations and computer programming within laboratory settings. Understanding matrix types, orders, and operations is fundamental for handling data matrices from experiments, such as spectrophotometric readings or chromatographic peak areas.

9.1.1 Types of matrices

Matrices are classified into various types based on their shape and element properties, which influence how they can be used in calculations.

Square matrix

A square matrix has the same number of rows and columns, denoted as an \( n \times n \) matrix. Square matrices are important in laboratory computations involving determinants and inverses, such as solving simultaneous linear equations describing chemical equilibria.

Row matrix

A row matrix contains only one row and multiple columns, represented as \( 1 \times n \). This type is often used to represent single sets of measurements or observations in a laboratory experiment.

Column matrix

A column matrix has one column and multiple rows, denoted \( m \times 1 \). It is commonly used to represent vectors such as concentration profiles or instrument calibration data.

Zero matrix

A zero matrix consists entirely of zero elements and can be of any order. It serves as the additive identity in matrix algebra, useful in error checking and baseline correction in lab data.

Diagonal matrix

A diagonal matrix is a square matrix where all off-diagonal elements are zero. This type simplifies many matrix operations, such as scaling factors in data normalization.

Identity matrix

The identity matrix is a special diagonal matrix with all diagonal elements equal to 1, denoted \( I_n \). It acts as the multiplicative identity and is critical in matrix inversion and system stability analysis.

Symmetric matrix

A symmetric matrix equals its transpose, \( A = A^T \), often arising in covariance matrices in laboratory statistics.

Worked Examples

Worked Examples

Example 1: Identify the type of matrix with elements arranged as 3 rows and 3 columns with zeros except the diagonal elements 2, 4, 6.

Given: Matrix order \(3 \times 3\), non-zero diagonal elements.

A diagonal matrix satisfies:

$$ A = \begin{bmatrix} 2 & 0 & 0 \\ 0 & 4 & 0 \\ 0 & 0 & 6 \end{bmatrix} $$

Answer: Diagonal matrix

Example 2: Determine if the matrix below is symmetric:

$$ A = \begin{bmatrix} 5 & 7 & 2 \\ 7 & 1 & 0 \\ 2 & 0 & 3 \end{bmatrix} $$

Calculate transpose \(A^T\):

$$ A^T = \begin{bmatrix} 5 & 7 & 2 \\ 7 & 1 & 0 \\ 2 & 0 & 3 \end{bmatrix} $$

Since \(A = A^T\),

Answer: Matrix \(A\) is symmetric

Example 3: Classify the matrix:

$$ B = \begin{bmatrix} 4 & 5 & 6 \end{bmatrix} $$

Dimensions: \(1 \times 3\)

Answer: Row matrix

Example 4: Classify the matrix:

$$ C = \begin{bmatrix} 1 \\ 3 \\ 7 \\ 9 \end{bmatrix} $$

Dimensions: \(4 \times 1\)

Answer: Column matrix

Example 5: Identify the zero matrix from:

$$ D = \begin{bmatrix} 0 & 0 \\ 0 & 0 \end{bmatrix} $$

All elements zero.

Answer: Zero matrix

9.1.2 Order of matrices

The order of a matrix defines its dimensions, essential for determining the feasibility of matrix operations such as addition, multiplication, and inversion in laboratory data analysis.

The order is expressed as \( m \times n \), where \( m \) is the number of rows and \( n \) is the number of columns.

$$ \text{Order} = m \times n $$

Worked Examples

Example 1: Find the order of the matrix:

$$ A = \begin{bmatrix} 12 & 7 \\ 5 & 3 \\ 8 & 4 \end{bmatrix} $$

Count rows: 3, columns: 2

Answer: Order is \(3 \times 2\)

Example 2: If a matrix represents 5 different chemical samples each with 4 measured parameters, what is the matrix order?

Samples = 5 rows, parameters = 4 columns

Answer: Order is \(5 \times 4\)

Example 3: A data matrix has 7 rows and 1 column representing absorbance values at different wavelengths. Determine the order.

Rows = 7, columns =1

Answer: Order is \(7 \times 1\)

Example 4: A square matrix has order \(n \times n\). If \(n=6\), what is the order?

Answer: Order is \(6 \times 6\)

Example 5: A matrix with 2 rows and 8 columns is used to store instrument calibration data. What is the order?

Answer: Order is \(2 \times 8\)

9.1.3 Matrix operations

Matrix operations are the basis for manipulating and analyzing data sets in science laboratory technology, including addition, subtraction, multiplication, and scalar multiplication.

Matrix addition and subtraction

Matrices can be added or subtracted only if they have the same order. The operation is performed element-wise.

$$ (A + B)_{ij} = A_{ij} + B_{ij} $$

$$ (A - B)_{ij} = A_{ij} - B_{ij} $$

Scalar multiplication

Multiplying a matrix by a scalar involves multiplying every element by the scalar.

$$ (kA)_{ij} = k \times A_{ij} $$

Matrix multiplication

Matrix multiplication is defined when the number of columns in the first matrix equals the number of rows in the second matrix. The resulting matrix has the order of the rows of the first and columns of the second matrix.

$$ (AB)_{ij} = \sum_{k=1}^n A_{ik} B_{kj} $$

Transpose of a matrix

The transpose of a matrix \(A\) is denoted \(A^T\), obtained by interchanging rows and columns.

$$ (A^T)_{ij} = A_{ji} $$

Worked Examples

Example 1: Add matrices:

$$ A = \begin{bmatrix} 3 & 5 \\ 2 & 4 \end{bmatrix}, B = \begin{bmatrix} 1 & 7 \\ 6 & 3 \end{bmatrix} $$

Check order: both \(2 \times 2\)

Calculate:

$$ A + B = \begin{bmatrix} 3 + 1 & 5 + 7 \\ 2 + 6 & 4 + 3 \end{bmatrix} = \begin{bmatrix} 4 & 12 \\ 8 & 7 \end{bmatrix} $$

Answer:

$$ \begin{bmatrix} 4 & 12 \\ 8 & 7 \end{bmatrix} $$

Example 2: Subtract matrices:

$$ C = \begin{bmatrix} 8 & 3 \\ 4 & 1 \end{bmatrix}, D = \begin{bmatrix} 2 & 5 \\ 1 & 0 \end{bmatrix} $$

Calculate:

$$ C - D = \begin{bmatrix} 8 - 2 & 3 - 5 \\ 4 - 1 & 1 - 0 \end{bmatrix} = \begin{bmatrix} 6 & -2 \\ 3 & 1 \end{bmatrix} $$

Answer:

$$ \begin{bmatrix} 6 & -2 \\ 3 & 1 \end{bmatrix} $$

Example 3: Multiply matrix by scalar \(k=4\):

$$ E = \begin{bmatrix} 1 & 2 \\ 3 & 0 \end{bmatrix} $$

Calculate:

$$ 4E = \begin{bmatrix} 4 \times 1 & 4 \times 2 \\ 4 \times 3 & 4 \times 0 \end{bmatrix} = \begin{bmatrix} 4 & 8 \\ 12 & 0 \end{bmatrix} $$

Answer:

$$ \begin{bmatrix} 4 & 8 \\ 12 & 0 \end{bmatrix} $$

Example 4: Multiply matrices:

$$ F = \begin{bmatrix} 2 & 3 \\ 1 & 4 \end{bmatrix}, G = \begin{bmatrix} 5 & 1 \\ 2 & 3 \end{bmatrix} $$

Check order: \(F\) is \(2 \times 2\), \(G\) is \(2 \times 2\), multiplication possible.

Calculate:

$$ FG = \begin{bmatrix} (2 \times 5 + 3 \times 2) & (2 \times 1 + 3 \times 3) \\ (1 \times 5 + 4 \times 2) & (1 \times 1 + 4 \times 3) \end{bmatrix} = \begin{bmatrix} (10 + 6) & (2 + 9) \\ (5 + 8) & (1 + 12) \end{bmatrix} = \begin{bmatrix} 16 & 11 \\ 13 & 13 \end{bmatrix} $$

Answer:

$$ \begin{bmatrix} 16 & 11 \\ 13 & 13 \end{bmatrix} $$

Example 5: Find transpose of matrix:

$$ H = \begin{bmatrix} 7 & 4 & 1 \\ 2 & 5 & 3 \end{bmatrix} $$

Calculate:

$$ H^T = \begin{bmatrix} 7 & 2 \\ 4 & 5 \\ 1 & 3 \end{bmatrix} $$

Answer:

$$ \begin{bmatrix} 7 & 2 \\ 4 & 5 \\ 1 & 3 \end{bmatrix} $$

Practice Questions

  1. Given matrices
    \[ A = \begin{bmatrix} 4 & 6 \\ 3 & 8 \end{bmatrix}, B = \begin{bmatrix} 1 & 5 \\ 7 & 2 \end{bmatrix} \]
    find \(A + B\). (4 marks)

  2. Multiply the matrix
    \[ C = \begin{bmatrix} 2 & 0 \\ 1 & 3 \end{bmatrix} \]
    by the scalar 5. (3 marks)

  3. Calculate the product of matrices
    \[ D = \begin{bmatrix} 1 & 4 \\ 2 & 5 \end{bmatrix} \]
    and
    \[ E = \begin{bmatrix} 3 & 1 \\ 0 & 2 \end{bmatrix} \]
    . (5 marks)

  4. Find the transpose of the matrix
    \[ F = \begin{bmatrix} 6 & 7 & 8 \\ 1 & 2 & 3 \end{bmatrix} \]
    . (3 marks)

  5. Subtract matrix
    \[ G = \begin{bmatrix} 9 & 4 \\ 3 & 7 \end{bmatrix} \]
    from
    \[ H = \begin{bmatrix} 5 & 6 \\ 8 & 2 \end{bmatrix} \]
    . (4 marks)

The rest of this chapter
🔒

Create a free account to open more of this chapter.

Free: practical guides, quick cards, workplace scenarios and more.

Create a free account
🔒9.2 Determinant and inverse of 2x2 matrix

In Science Laboratory Technology, matrices are used for organizing experimental data, transforming coordinate systems, and solving system equations that arise in chemical analysis and instrument calibration. The determinant and inverse of a 2x2 matrix are fund…

🔒9.3 Solution of simultaneous equations using matrix method

Solving simultaneous linear equations is a common task in Science Laboratory Technology, used in calibration, chemical analysis, and data interpretation. The matrix method provides an efficient way to solve systems with two or more variables by using matrix al…

🔒9.4 Eigenvalues and Eigenvectors

In Science Laboratory Technology, especially when analyzing systems such as chemical reactions, population models, or vibration modes in instruments, matrices are used to represent complex interactions. Understanding eigenvalues and eigenvectors is crucial for…

Chapter Summary

This chapter introduced the fundamental concepts of matrices, starting with various types such as singular, non-singular, identity, and echelon matrices. Understanding the order of matrices was essential for performing valid operations, including addition, subtraction, scalar multiplication, and matrix multiplication, with attention to compatibility rules. The chapter then focused on calculating the determinant and inverse of a 2x2 matrix, providing the foundation for solving linear systems. The matrix method for solving simultaneous equations was explored, demonstrating how matrices can efficiently handle multiple variables. Finally, the concepts of eigenvalues and eigenvectors were presented, highlighting their significance in understanding matrix behavior and transformations. This comprehensive coverage equips students with the skills to apply matrices effectively in scientific and engineering problems.

Self-Assessment

🔒 PDFDownload this self-assessment, with answers

Written Assessment

  1. Given matrices \( A = \begin{bmatrix} 2 & 3 \\ 1 & 4 \end{bmatrix} \) and \( B = \begin{bmatrix} 5 & 1 \\ 0 & 2 \end{bmatrix} \), calculate \( A + B \). (2 marks)

  2. Multiply matrix \( C = \begin{bmatrix} 4 & 7 \\ 2 & 5 \end{bmatrix} \) by scalar 3. (2 marks)

🔒8 more in this section.

Chapter Examination Questions

🔒 PDFDownload these examination questions, with model answers

SECTION A (40 Marks) - Answer ALL Questions

  1. A Science Laboratory at Kenyatta National Hospital uses a \(2 \times 2\) matrix \(A = \begin{bmatrix} 4 & 2 \\ 1 & 3 \end{bmatrix}\) to represent reagent concentrations. Find the order of matrix \(A\). (4 marks)
  2. Determine whether the matrix \(B = \begin{bmatrix} 5 & 0 \\ 0 & 5 \end{bmatrix}\) is singular or non-singular. (4 marks)
🔒18 more in this section.
Flashcards 20 cards Study deck ▾
Question
1

↻ Tap card to reveal answer
🔒

18 more in this section.

Create a free account
Test Yourself 14 questions Start quiz ▾
0%
0 / 2
🔒

12 more in this section.

Create a free account
Am I competent?

At the start of this chapter we promised you would be able to:

  • Understand the concept of rate of change in different contexts.
  • Apply differentiation rules correctly to find the rate of change.
  • Calculate derivatives of various functions accurately.
  • Interpret the meaning of the rate of change in real-world problems.
  • Solve problems involving rate of change with confidence.

Tick each one you can genuinely do.

Prove it — in the simulator

Sample simulation — try how the simulator works. A version built for this chapter's practical is coming.

Prepare Kenyan PilauLocked ▸

Free: practical guides, quick cards, workplace scenarios and more.

Now — are you there yet?

You're competent when you can confidently do 50% or more of what this chapter promised.

Sign in to record how you're doing.