🎯 Learning Objectives🎯 Objektif Pembelajaran
📖 Key Concepts📖 Konsep Utama
Matrix Addition & Scalar Multiplication (Form 4)Penambahan & Pendaraban Skalar Matriks (Tingkatan 4)
Same-order matrices add element by element. Scalar multiplies each element.Matriks susunan sama ditambah unsur demi unsur. Skalar mendarab setiap unsur.
kA = [k × a_ij]
Only same-order matrices can be added!
Matrix Multiplication (Form 4)Pendaraban Matriks (Tingkatan 4)
Row of first × column of second. Not commutative (AB ≠ BA)!Baris pertama × lajur kedua. Tidak komutatif (AB ≠ BA)!
Columns of A must = Rows of B
Order of (m×n)(n×p) = m×p
Matrix Inverse (Form 5)Songsangan Matriks (Tingkatan 5)
Inverse exists if determinant ≠ 0. Swap a,d, negate b,c, divide by determinant.Songsangan wujud jika determinant ≠ 0. Tukar a,d, nafi b,c, bahagi dengan determinant.
Singular if ad−bc = 0
Identity: I = [1 0; 0 1]
Solving Simultaneous Equations (Form 5)Penyelesaian Persamaan Serentak (Tingkatan 5)
Write as AX = B, then X = A⁻¹B.Tulis sebagai AX = B, kemudian X = A⁻¹B.
Must check determinant ≠ 0 first!
If singular, no unique solution
✏️ Worked Examples✏️ Contoh Penyelesaian
Find A + B where A = [3 1; 2 4], B = [1 5; 3 2]Cari A + B di mana A = [3 1; 2 4], B = [1 5; 3 2]
Multiply [1 2; 0 3] by [4 0; 1 5]Darab [1 2; 0 3] dengan [4 0; 1 5]
Find the inverse of M = [3 2; 1 4]Cari songsangan M = [3 2; 1 4]
Solve using matrices: 2x + y = 7, x + 3y = 11Selesaikan menggunakan matriks: 2x + y = 7, x + 3y = 11
⚠️ Common Mistakes⚠️ Kesilapan Biasa
❌ Wrong multiplication order — not commutative! AB ≠ BASusunan darab salah — tidak komutatif! AB ≠ BA
Always multiply in the correct order. Matrix multiplication is NOT like number multiplication.Sentiasa darab dalam susunan yang betul. Pendaraban matriks BUKAN seperti pendaraban nombah.
❌ Calculating determinant incorrectly — it's ad−bc, not ac−bdMengira determinant dengan salah — ia ad−bc, bukan ac−bd
For [a b; c d]: determinant = ad − bc. Cross-multiply top-left×bottom-right MINUS top-right×bottom-left.Bagi [a b; c d]: determinant = ad − bc. Darab silang kiri-atas×kanan-bawah TOLAK kanan-atas×kiri-bawah.
❌ Forgetting to check if inverse existsLupa menyemak jika songsangan wujud
If determinant = 0, the matrix is singular and has NO inverse. Always check first!Jika determinant = 0, matriks adalah singular dan TIADA songsangan. Sentiasa semak dahulu!
📝 SPM Practice📝 Amalan SPM
Paper 1 — Multiple ChoiceKertas 1 — Pilihan Berganda
Find the determinant of [3 2; 1 4]Cari determinant bagi [3 2; 1 4]
Which matrix has no inverse?Matriks manakah yang tiada songsangan?
Multiply [1 2; 0 3] by [4 0; 1 5]Darab [1 2; 0 3] dengan [4 0; 1 5]
Solve 2x + y = 7, x + 3y = 11 using matricesSelesaikan 2x + y = 7, x + 3y = 11 menggunakan matriks
What is the inverse of [1 0; 0 1]?Apakah songsangan bagi [1 0; 0 1]?
Paper 2 — Structured QuestionsKertas 2 — Soalan Berstruktur
Given A = [3 1; 2 4] and B = [1 5; 3 2].
(a) Find A + B. [2 marks]
(b) Find 2A − B. [3 marks]Diberi A = [3 1; 2 4] dan B = [1 5; 3 2].
(a) Cari A + B. [2 markah]
(b) Cari 2A − B. [3 markah]
Solution (a)Penyelesaian (a)
Solution (b)Penyelesaian (b)
Given M = [4 3; 2 1].
(a) Find M⁻¹. [3 marks]
(b) Verify that M × M⁻¹ = I. [3 marks]Diberi M = [4 3; 2 1].
(a) Cari M⁻¹. [3 markah]
(b) Sahihkan bahawa M × M⁻¹ = I. [3 markah]
Solution (a)Penyelesaian (a)
Solution (b)Penyelesaian (b)
📋 Formula Summary📋 Ringkasan Formula
Addition: A + B = [a_ij + b_ij]
Scalar: kA = [k × a_ij]
Multiplication: AB = [∑(a_ik × b_kj)]
Inverse: M⁻¹ = 1/(ad−bc) × [d −b; −c a]
Singular if ad−bc = 0
Solving: AX = B → X = A⁻¹B