Connect algebra formulas to spreadsheet-style calculations by identifying inputs, fixed values, variable values and repeated formulas.
Use the printable version for cell-style formulas, repeated calculations and interpreting changed inputs.
A school canteen spreadsheet uses quantity, price per item and a fixed delivery fee to calculate order totals. What numbers should change from row to row, and what might stay fixed?
Type the values that should change and stay fixed.
Write the values that should change and stay fixed in your book.
Core Content
A cell reference such as B2 points to a value in a table. A formula can use cell references so the calculation updates when the values change.
| Cell | Meaning | Value |
|---|---|---|
| B2 | Quantity | 12 |
| C2 | Cost per item | $4 |
| D2 | Delivery fee | $10 |
The formula =B2*C2+D2 means total equals quantity times cost per item, plus delivery fee.
A spreadsheet uses =B2*C2+D2, where B2 is quantity, C2 is cost per item and D2 is a delivery fee.
If B2 = 12, C2 = 4 and D2 = 10:
Total $= 12 \times 4 + 10$
Total $= 48 + 10 = 58$
Answer: The order total is $58.
A sports store records number of balls in column B and price per ball in column C. The total price for each row is in column D.
For row 2, the total is quantity times price per ball.
Spreadsheet formula: =B2*C2
Algebra version: $T = qp$
When copied to row 3, the same idea becomes =B3*C3.
A formula is $T = 8n + 15$, where $n$ is the number of items. What happens when $n$ changes from 10 to 14?
For $n = 10$: $T = 8(10) + 15 = 95$.
For $n = 14$: $T = 8(14) + 15 = 127$.
The output increases by $32 because 4 extra items each add $8.
A spreadsheet formula is only useful if the input values use consistent units. Mixing cents and dollars, minutes and hours, or single items and boxes can produce incorrect outputs.
If quantity and price change row by row, a copied formula can calculate each order total. A delivery fee may be fixed or may also change, depending on the spreadsheet design.
Assessment
Random questions from the lesson bank - feedback appears immediately.
Interpret spreadsheet formulas and explain input changes.
1. A spreadsheet formula is =B2*C2+D2. B2 is quantity, C2 is price per item and D2 is delivery. Calculate the total when B2 = 18, C2 = 3 and D2 = 12. 3 MARKS
2. Write a spreadsheet formula for total pay if B2 is hours worked, C2 is hourly rate and D2 is a fixed allowance. 2 MARKS
3. Explain why unit consistency matters when copying spreadsheet formulas down a table. 2 MARKS
Translate each cell formula into words, then identify which input changes the output.
Back to module