Lesson 80 — Using Digital Tools for Efficient Financial Calculation
Strand: Number | Descriptor: AC9M7N09 | Duration: 45 minutes
Room/equipment: computer lab or class set of devices with spreadsheet software.
Learning Intentions
- To build a spreadsheet that models a financial situation.
- To use formulas and cell references so the model updates automatically.
Success Criteria
I can:
- Enter data and label it clearly in a spreadsheet.
- Write formulas using cell references,
*,+,-,/andSUM. - Use the fill handle to repeat a formula down a column.
- Change an input and interpret how the outputs respond (“what-if” analysis).
Warmup
(6 minutes — spot the difference, projected)
Two versions of the same stall budget are projected:
- Sheet 1: every total typed in by hand as a number.
- Sheet 2: totals produced by formulas (
=B2*C2,=SUM(D2:D6)).
Change the price of one item in each sheet.
- What happens in Sheet 1? In Sheet 2?
- Which sheet do you trust more, and why?
- When would a hand-typed number be dangerous?
Answers: 1. Sheet 1’s totals are now wrong and silently so; Sheet 2 updates everything instantly; 2. Sheet 2 — one source of truth per number; 3. Whenever inputs change — which in real budgeting is always.
The principle: type each fact once; compute everything else.
Activities
Activity 1 — Guided Build: the Sausage Sizzle Sheet (16 min)
Rebuild Lesson 77’s carnival model as a live spreadsheet, teacher leading, students following.
Layout to build:
| A | B | C | D | |
|---|---|---|---|---|
| 1 | Item | Qty | Unit cost | Cost |
| 2 | Sausage packs | 21 | 9.50 | =B2*C2 |
| 3 | Bread loaves | 20 | 3.20 | =B3*C3 |
| 4 | Onions (kg) | 5 | 3.40 | =B4*C4 |
| 5 | Total | =SUM(D2:D4) |
Teach explicitly, in order:
- Labels first — row and column headings before any numbers.
- A formula starts with
=.=B2*C2means “this cell shows B2 times C2”. - The fill handle — write
=B2*C2once, drag down to D4. Watch the row numbers adjust automatically. SUMfor totals —=SUM(D2:D4), not=D2+D3+D4(which breaks when rows are added).- Sanity-check against the by-hand answer from Lesson 77: total should be
280.50$. If the sheet disagrees, the sheet is wrong — find the error.
Extend the sheet — revenue and profit:
| A | B | |
|---|---|---|
| 7 | Sandwiches sold | 420 |
| 8 | Price each | 3.50 |
| 9 | Revenue | =B7*B8 |
| 10 | Profit | =B9-D5 |
Check: profit
Activity 2 — What-if Analysis (14 min)
Pairs, using their built sheet. Record each answer before moving on.
Use the model to answer — changing only input cells, never formula cells:
- Sausage packs rise to
11$. New total cost and profit? - Reset. Attendance falls so only
sandwiches sell (adjust B7; leave the shopping as bought). Profit? - Reset. The P&C debates pricing: try
3 $4 $4.50$ per sandwich. Record the profit each time. What does each 50c step add? - Find, by trial, the sale price that gives a profit of about
1400 420$ sold.
Socratic scaffolding for Q3–4:
| Prompt | Purpose |
|---|---|
| Before trying: predict what a 50c rise adds at | |
| Does the sheet agree? | Yes: profits step |
| For Q4, bracket the target. | |
| Why is trial fast here? | Each trial is one keystroke — this is the point of building the model. |
| Looking back | The spreadsheet turned a calculation into an instrument: you play inputs and read outputs. |
Answers: 1. Cost
Activity 3 — Independent Mini-build (9 min)
Individually. Build from scratch — no template.
The movie night (from Lesson 78): hall
120 $60 $2.50 $7$, attendance in one input cell.
- Build the sheet with attendance
. What is the profit? - Use the sheet to find the break-even attendance by trial.
- Check the break-even against the algebra from Lesson 78.
Answers: 1.
Checks for Understanding
(5 minutes — exit ticket, collected)
- What does the formula
=B3*C3do, and why is it better than typing the product? - What is the advantage of
=SUM(D2:D6)over=D2+D3+D4+D5+D6? - In a what-if analysis, which cells may you change?
- Your spreadsheet and your by-hand answer disagree. What should you do first?
- Reasoning. A spreadsheet gives an answer instantly. Why must you still estimate?
Answers: 1. Multiplies those two cells; it updates automatically when either input changes; 2. It survives inserted rows and is shorter and less error-prone; 3. Input cells only — never formula cells; 4. Re-check both, starting with the sheet’s formulas (a mistyped reference is the usual culprit) — disagreement means at least one is wrong; 5. The sheet computes what you asked, not necessarily what you meant — an estimate catches a wrong formula, which no amount of computing speed will.
Common Misconceptions
| Misconception | How to pre-empt it |
|---|---|
| Typing computed values instead of formulas. | The warmup’s broken Sheet 1; the “type each fact once” principle. |
| Overwriting formula cells during what-ifs. | Name the rule: inputs only. Colour input cells if the software allows. |
Forgetting the leading =. | The text just sits there — show it once, name it, move on. |
| Believing the spreadsheet is authoritative. | Exit ticket Q4/Q5 — a sheet automates your model, errors included. |
| Building without labels. | Labels first is step 1 of the build, non-negotiable. |
| Dragging a fill down over a total row. | Watch the SUM row while filling; undo is the friend. |
Enrichment — Competition-Style Problems
E1 (Kangaroo style). A cell contains =B2*C2 where B2
Answer
E2 (AMC Junior style). A spreadsheet column holds =SUM(A1:A4)/4. What does it display, and what is it computing?
Answer
E3 (Challenge). A profit model is =B1*B2-45-0.8*B1 with B1
Answer
E4 (Challenge). Explain why =SUM(D2:D4) still gives the right total after a new row is inserted between rows 2 and 3, but =D2+D3+D4 does not.
Answer
The range D2:D4 stretches automatically to D2:D5 when a row is inserted inside it; the explicit sum keeps its three original references and silently omits the new row — the most dangerous kind of spreadsheet error, because nothing looks wrong.
Homework
(No devices assumed — paper spreadsheet reasoning.)
-
This sheet models a cupcake stall. Fill in what each formula cell displays:
A B C D 1 Item Qty Unit cost Cost 2 Ingredients/batch 4 6.50 =B2*C23 Boxes 30 0.40 =B3*C34 Stall fee 1 25.00 =B4*C45 Total =SUM(D2:D4) -
The stall sells
cupcakes at 2.50$: revenue cell =120*2.5and profit=revenue-total. Find both values. -
Using your Q1–2 model, what happens to profit if the stall fee rises to
40$? Answer without rebuilding — reason about which cells change. -
Write the spreadsheet formula for: (a)
of cell B6 (b) the mean of A1 to A10 (c) cell B2 marked up by . -
A sheet shows
=D2+D3+D4under a column where a new row was inserted at row 3. Explain the danger. -
Reasoning. “The spreadsheet says so” — why is this not a sufficient check of an answer?
-
Challenge. Design on paper a sheet for Lesson 79’s laptop comparison (three stores, discounts and GST), with one formula per final price, so that changing any sticker price updates its final price automatically.
Answers: Q1 — D2 =0.08*B6 (b) =SUM(A1:A10)/10 (or =AVERAGE(A1:A10)) (c) =B2*1.6. Q5 — the new row’s value is silently excluded from the total. Q6 — the sheet faithfully computes whatever formula was typed, including a wrong one; only an independent estimate or by-hand check can catch a mis-specified model. Q7 — e.g. =1249*0.85, =1180*0.9, =999*1.1, each referencing an input cell for the sticker price.