AHL 1.14: MATRICES
๐ Key Definitions
| Term | Definition | Example |
|---|---|---|
| Matrix | A rectangular array of numbers arranged in rows and columns. | Example: [1 2] [3 4] |
| Element | The number at the intersection of a row and column in a matrix (notation: Aij). | 2 is element (1,2) of [1 2] [3 4] |
| Order | The matrix’s size: number of rows ร number of columns (m ร n). | Above matrix is order 2 ร 2 |
| Identity Matrix | Square matrix with 1s on diagonal and 0s elsewhere; acts as the multiplicative identity. | I = [1 0] [0 1] |
| Zero Matrix | Matrix with all entries equal to zero; additive identity. | 0 = [0 0] [0 0] |
Use the calculator’s matrix editor to input matrices (confirm rows ร columns). Use built-in determinant, inverse and linear-solve functions. Store matrices in memory to avoid re-entry; verify inverses by computing A ร Aโ1 = I. For larger problems, spreadsheets or CAS systems allow symbolic manipulation and numerical stability checks.
๐ Algebra of Matrices
- Equality: A = B if orders match and Aij = Bij for all i,j.
- Addition: (A + B)ij = Aij + Bij (defined only for same order).
- Subtraction: (A โ B)ij = Aij โ Bij.
- Scalar multiplication: (kA)ij = k ร Aij.
Matrices compress relational information into compact structures. Discuss whether the abstraction hides assumptions (e.g. linearity) and how that affects trust in model outputs. Does mathematical compactness enhance or reduce explanatory power?
๐ Multiplication of Matrices
- To multiply A (m ร n) by B (n ร p): (AB)ij = ฮฃk=1..n Aik ร Bkj.
- Multiplication is associative: (AB)C = A(BC), and distributive over addition, but generally not commutative (AB โ BA in general).
[3 4], B = [2 0]
[1 3] โ AB computed entrywise:
AB = [ (1ร2 + 2ร1) , (1ร0 + 2ร3) ]
[ (3ร2 + 4ร1) , (3ร0 + 4ร3) ] = [4 , 6] [10 , 12].
An EE might investigate the stability of repeated matrix multiplication (e.g., Markov chains) or the effect of rounding error in iterative matrix methods โ both rich topics linking linear algebra theory to numerical analysis.
๐ Identity & Zero Matrices
- Identity I: A ร I = I ร A = A for conformable sizes.
- Zero 0: A + 0 = 0 + A = A.
๐ Determinants & Inverses
- 2 ร 2 determinant: |A| = a d โ b c for A = [a b]
[c d]. - Inverse (if |A| โ 0): Aโ1 = (1 รท |A|) ร [d โb]
[โc a].
[2 6] โ |A| = 24 โ 14 = 10 โ Aโ1 = (1/10)[6 โ7]
[โ2 4].
Use real datasets to model systems (economic input-output, population transitions) and demonstrate how singular matrices (|A|=0) reveal dependencies or lack of invertibility. Discuss limitations and numerical stability when computing inverses with technology.
๐ Solving Linear Systems
- Matrix form: A x = b, where A is coefficient matrix, x vector of unknowns, b constants.
- If Aโ1 exists: x = Aโ1 b. If A singular, investigate consistency (no solution or infinitely many).
Practice both by-hand methods (2ร2 inverses, determinant checks) and GDC workflows (matrix entry, inverse, solve). In exam answers, indicate the order and clearly state intermediate checks (e.g., AรAโ1=I).