What You Will Be Able to Do
By the end of this lesson, you should be able to:
- Read matrix dimensions; access entry
- Compute 2×2 products as dot products
- Write any system as
; name all three parts - Convert between system and matrix form, both ways
- Explain the "same
, different " advantage
One Notation for Every Linear System
Two equations, two unknowns. Could one compact object encode both?
What if we stored the coefficients in a table and wrote the whole system as a single equation?
Matrices: Notation and Entry Access
A matrix is a rectangular array of numbers. Dimensions:
Matrix Multiplication: Row Times Column
Each result entry is a dot product: row
Not element-wise.
Computing a Full Matrix Product Step by Step
R1·C1:
R2·C1:
The Variable Vector Connects to Systems
Watch what happens when the second matrix is
Those are exactly the left-hand sides of two linear equations.
Naming the Parts of
: coefficient matrix — each row = one equation : variable vector; : constant vector
Converting a System to
System:
Row 1 of
Verify: Reproduces the System
Row 1:
Row 2:
Reverse: Matrix Equation to System
Given:
Read each row of
Row 1:
Row 2:
Each row of
Writing Zero Coefficients for Missing Variables
System:
Rewrite equation 1 as
Missing variable means coefficient is 0 — write it explicitly.
Common Error: You Cannot Divide by a Matrix
Wrong:
Correct:
Scalar analogy:
Check-In: System to Matrix Form
Write each system as
and and
For (2): rearrange to standard form
Same , Different — the Power
Same coefficient matrix
Two different systems — one coefficient matrix. If
Factory Scenario: Structure vs. Specifics
A factory mixes two materials. Batch equations (fixed ratios
Week 1 targets
Both weeks use the same
Your Turn: What Changes, What Stays?
What stays the same? What changes? What does each represent in the system?
Unscaffolded: Matrix Equation to System
Given:
Write the system of equations. Then compute
No hints. Show all steps.
The Identity Matrix — The Matrix "1"
The identity matrix leaves any matrix or vector unchanged — like multiplying by 1.
If
Scalar Analogy: Solving
| Scalar | Matrix | |
|---|---|---|
| Equation | ||
| Solution | ||
| Undefined when |
Multiply on the LEFT — order matters.
What You Can Do Now
✓ Access
✓ Write any system as
✓ Convert matrix equation → system; verify
ROW of
Zero coefficients must appear explicitly
Multiply by
Coming Up: Finding and Using
Next: HSA.REI.C.9 — find
Key question: when does
REI.C.8 gave us the form. REI.C.9 gives us the solution method.