X.5 Practice Practices

Tools & technology

Use calculators, spreadsheets and dynamic software — stage- and country-gated.

Tools and technology means using machines — calculators, spreadsheets and dynamic software — to do mathematics faster, more accurately, and on problems too big to do by hand.

What it means

A tool does not replace understanding; it extends it. You still decide what to compute and whether the answer makes sense — the machine handles the grinding.

Three families of tool matter most:

  • A calculator works out arithmetic. Its job is speed and accuracy on numbers you already know how to combine — 487 × 63 in a second instead of a minute.
  • A spreadsheet is a grid of boxes called cells, each named by its column-letter and row-number (like B4). A cell can hold a number, or a formula — a rule that computes from other cells (e.g. = A1 + A2). Change one number and every formula that depends on it recalculates at once. That makes spreadsheets ideal for repeating a calculation over many rows, or asking “what if this changed?”
  • Dynamic software (Desmos, GeoGebra) draws mathematics and lets you move it. Type an equation and see its graph; drag a corner of a triangle and watch its angles update live. “Dynamic” simply means it redraws in real time as you change the inputs.

The key skill is judgement: choosing the right tool, entering the problem correctly, and checking the result against a rough mental estimate. A tool is only as trustworthy as what you type into it.

Worked examples

A spreadsheet formula. Put costs in column A and add them:

       A            B
1     3.50
2     1.20
3     0.80
4    = A1+A2+A3   -> 5.50

Change A2 to 2.20 and cell A4 instantly shows 6.50 — no re-adding by hand.

A calculator sanity-check. Compute 487 × 63. Estimate first: about 500 × 60 = 30000. The calculator says 30681. Close to the estimate, so it is believable. If it had shown 3068 or 306810, the estimate would flag a typed error.

Dynamic graphing. In Desmos, type y = x^2. A U-shaped curve (a parabola) appears. Change it to y = x^2 - 4 and the whole curve slides down by 4, crossing the x-axis at -2 and 2. You see what the numbers do.

The generative-art connection

Dynamic software is where mathematics becomes visibly generative. In Desmos, a single equation is a drawing instruction: r = 1 - sin(theta) plots a heart-shaped cardioid, and layering dozens of such equations builds full pictures — the whole point of Desmos Art. A spreadsheet does the same with numbers: fill a column with = previous + step, chart it, and a rule becomes a shape.

This is exactly the mathartcademy premise. The nico.art tool dot-multiplier is a small dynamic instrument — drag a slider and one dot multiplies into a symmetric starburst, the structure of the array appearing as you change the input. The tool is not decoration around the maths; the tool is the maths, redrawn live.

Common misconceptions

  • “The calculator is always right.” It faithfully computes what you typed — including your typos. The estimate-then-check habit catches these.
  • “Using a tool is cheating.” For arithmetic you have already mastered, a tool frees attention for the harder thinking. (Note: some curricula, such as France’s early years, deliberately restrict calculators so mental fluency develops first — the tool comes after the skill, not instead of it.)
  • “A spreadsheet formula is a fixed answer.” It is a live rule. = A1 + A2 re-computes whenever A1 or A2 changes — that recalculation is the whole feature.

What a learner should be able to solve

The benchmark for mastering this concept — the problems a child at this stage is expected to be able to work through.

  1. You need to work out `356 × 78`. Before you touch a calculator, give a rough estimate by rounding both numbers. Then say how you would know if the calculator's answer is believable.

    Answer

    Round to `400 × 80 = 32000` (or `350 × 80 = 28000`). The real answer is `27768`. Because it sits near the estimate, it is believable. An answer like `2776` or `277680` would be about 10x off and flag a typed mistake. Demonstrated behaviour: estimate first, then trust-but-check the tool.

    Art hook Build a Canvas 'estimate meter': a horizontal number line from 0 to 50000 with the estimate marked as a wide green band; type an answer and a dot drops onto the line — inside the band it glows green, far outside it flashes red.

  2. Describe (in words, no computer needed) how you would set up a spreadsheet to add up the price of 5 items in a shopping list, so that if one price changes the total updates by itself. Which cells hold numbers and which holds a formula?

    Answer

    Put the 5 prices in cells `A1` to `A5` (numbers). In `A6` put the formula `= A1+A2+A3+A4+A5` (or `= SUM(A1:A5)`). `A6` is the only formula cell; it recomputes automatically whenever any price changes. Demonstrated behaviour: use a formula so the answer is a live rule, not a fixed number.

    Art hook A 5-row Canvas grid where each row is a coloured bar whose length = its price; drag a bar longer and a 'total' bar at the bottom grows in real time, showing the formula recomputing.

  3. In Desmos you type `y = x` and see a straight line through the middle. A friend says 'change it to `y = x + 3` and the line will get steeper.' Are they right? Say what actually happens and how the tool lets you check.

    Answer

    They are wrong. Adding 3 does not change the steepness (slope stays 1); it slides the whole line up by 3, so it now crosses the y-axis at 3 instead of 0. To make it steeper you change the number multiplying `x` (e.g. `y = 2x`). The tool checks it instantly: type both and watch. Demonstrated behaviour: form a prediction, then use dynamic software to confirm or correct it.

    Art hook A Canvas line-grapher with two sliders: one for slope (tilts the line), one for the '+ number' (shifts it up/down). Two lines drawn at once so learners see steepness vs shift are different moves.

  4. You are given four jobs: (a) `12 + 13 + 15`, (b) drawing a circle and dragging one point to see how the shape changes, (c) adding up 200 rows of sales numbers, (d) `9999 × 9999`. For each, say the best tool: mental maths, calculator, spreadsheet, or dynamic geometry software — and why.

    Answer

    (a) Mental maths — small friendly numbers (`= 40`). (b) Dynamic geometry software — you want to move and see it update. (c) Spreadsheet — one formula repeated over many rows. (d) Calculator — a single big multiplication (`= 99980001`). Demonstrated behaviour: choose the right tool for the job rather than defaulting to one.

Training exercises

Practice problems, easier first, that build toward the bar above. Each doubles as a seed for an interactive artwork.

  1. True or false: a calculator can make a mistake all by itself, even when you press the buttons correctly.

    Answer

    False. A calculator faithfully computes exactly what you type. Mistakes come from typos or choosing the wrong operation, not from the machine 'getting it wrong'. This is why we estimate and check.

    Art hook A Canvas 'button echo': tap number keys and the screen mirrors each keystroke as a glowing dot in a row, making visible that the machine only ever shows what you fed it.

  2. A spreadsheet cell is named by its column letter and row number. What is the name of the cell in column `C`, row `4`? And which cell is `B2`?

    Answer

    The cell in column `C`, row `4` is `C4`. `B2` is the cell in column `B`, row `2`. Recall of the cell-naming system.

    Art hook A clickable Canvas grid of empty cells; hover any cell and its name (like `C4`) pops up, colouring its column letter and row number in two different hues.

  3. Before using a calculator for `19 × 21`, make a quick estimate by rounding to `20 × 20`. What is your estimate? Then, without a machine, is the real answer a bit less, about the same, or a bit more?

    Answer

    Estimate `20 × 20 = 400`. The real answer is `399`, just a bit less. (`19 × 21 = 20² − 1`.) Application of estimate-first.

    Art hook Two Canvas squares side by side: a `20 × 20` grid of dots (400) and a `19 × 21` grid; overlay them to reveal the single missing dot — a visual proof the answers nearly match.

  4. In a spreadsheet, cells `A1 = 6` and `A2 = 4`. You put the formula `= A1 + A2` in `A3`. What does `A3` show? Now you change `A1` to `10`. What does `A3` show now, and did you have to retype the formula?

    Answer

    `A3` first shows `10`. After changing `A1` to `10`, `A3` shows `14` — automatically. You did NOT retype the formula; a formula is a live rule that recomputes on its own. Application of the 'live formula' idea.

    Art hook Two linked Canvas dials for `A1` and `A2`; a third dial for `A3` turns by itself to their sum whenever you spin either input — the formula visualised as gears.

  5. A calculator screen shows `316 × 49 = 1548`. Your estimate was 'about 15000' (from `300 × 50`). Something is wrong — spot the likely mistake without redoing the whole sum.

    Answer

    `1548` is about 10x too small compared with the estimate of ~15000, so a digit was almost certainly missed when typing (the true answer is `15484`). The estimate flags a typed error. Spot-the-mistake / reasoning.

    Art hook A Canvas 'magnitude ruler' with rungs at 1500, 15000, 150000; drop the shown answer and the estimate onto it — they land on different rungs, lighting a warning.

  6. In Desmos you type `y = x^2` and get a U-shaped curve. Predict: if you change it to `y = x^2 + 5`, will the curve move up, move down, or get wider? Then say how the software lets you check your prediction.

    Answer

    It moves up by 5 (the whole U slides upward). You check by typing it and watching the curve jump. Reasoning + tool-verification. (Adding a positive number shifts up; subtracting shifts down.)

    Art hook A Canvas parabola with an 'up/down' slider; the U glides vertically as you drag, tracing faint ghost copies at each step so the shift is visible.

  7. You want to compute `(3 + 5) × 2` on a calculator. Some calculators need the brackets typed in. If you instead type `3 + 5 × 2` with no brackets, you might get `13` instead of `16`. Explain why, and how brackets fix it.

    Answer

    Without brackets the calculator does `×` before `+` (order of operations): `5 × 2 = 10`, then `3 + 10 = 13`. Typing the brackets `(3 + 5) × 2` forces the addition first: `8 × 2 = 16`. Lesson: enter the problem the way you mean it. Reasoning about correct input.

    Art hook A Canvas expression that visibly regroups: dots for `3 + 5 × 2` first bind the `5×2` pair, then a bracket animation lassoes `3+5` instead — two groupings, two colours, two totals.

  8. Design a spreadsheet plan (in words) that turns a rule into a picture: column `A` starts at 0 and each row adds 2 to the one above. List the first five values, and describe the formula you'd put in `A2` to make this happen automatically.

    Answer

    Put `0` in `A1`. In `A2` put `= A1 + 2`, then fill it down. The first five values are `0, 2, 4, 6, 8`. Charting the column gives an evenly climbing line — a rule made visible. Open-ended / applies the 'live rule' idea to make a pattern.

    Art hook A Canvas column of growing bars generated by 'previous + 2'; plot each bar's top as a dot and connect them to reveal a straight climbing line — change the step to 3 and the slope steepens live.

  9. Give one job where a calculator is the RIGHT tool, and one job where mental maths is better even though a calculator is nearby. Explain each choice in a sentence.

    Answer

    Calculator is right for something like `487 × 638` — big, awkward numbers where by-hand is slow and error-prone. Mental maths beats it for something like `10 + 10` or `100 ÷ 2` — instant in your head, and reaching for a tool wastes time. Judgement / choosing the tool.

    Art hook A Canvas sorting game: number-fact cards fly in and you flick each into a 'brain' bucket or a 'calculator' bucket; correct sorts leave a coloured trail forming a two-tone pattern.

  10. A friend says: 'Once I set up a spreadsheet formula, I have to redo it every time a number changes, so it's no faster than a calculator.' Is this true? Correct them.

    Answer

    Not true. The whole point of a formula is that it recomputes by itself when any input changes — that's what makes a spreadsheet faster than a calculator for repeated or 'what-if' work. Spot-the-misconception / reasoning.

    Art hook A Canvas 'what-if' panel: drag any input tile and every dependent tile ripples to a new colour instantly, dramatising automatic recalculation as a spreading wave.

  11. In dynamic geometry software you draw a triangle and the software shows its three angles adding to `180°`. You drag one corner to make the triangle taller. Predict what happens to the angle sum, and say why this is a good use of a dynamic tool.

    Answer

    The angle sum stays `180°` no matter how you drag — that's a fixed fact of triangles. It's a great use of a dynamic tool because you can test the rule against many different triangles in seconds and see it always holds, which builds conviction. Reasoning + tool judgement.

    Art hook A draggable Canvas triangle whose three angles are shown as coloured arcs; a bar labelled '180°' stays full however you drag the corners, the arcs resizing but always refilling the bar.