M6.1 Stage 6 Measurement

Circle measures

Circle measures: circumference (perimeter ∝ diameter) & area of a circle; composite perimeters/areas.

A circle has two lengths worth measuring — the distance around it (its circumference) and the space inside it (its area). Both turn out to be governed by a single, unchanging number: π.

What it means

Every circle has a centre. The radius r is the distance from the centre to the edge; the diameter d is the full width through the centre, so d = 2 × r. The circumference C is the perimeter — the distance all the way around.

Here is the key fact that makes circles special. If you measure the circumference of any circle and divide it by its diameter, you always get the same number, roughly 3.14159. We call it pi (π). It never changes, whether the circle is a coin or a stadium. So:

C = π × d or equally C = 2 × π × r

The area A — the amount of surface the circle covers — is given by:

A = π × r × r (written A = π r²)

Why ? Imagine slicing the circle into many thin wedges, like a pizza, and laying them alternately point-up and point-down. They fit together into a shape close to a rectangle: as tall as the radius r and as long as half the circumference, π r. Its area is r × π r = π r². The more slices, the truer the rectangle — so the formula is exact.

A composite shape is one built from simpler pieces — say a rectangle with a semicircle on top. To find its perimeter or area, split it into parts you know, work each out, then add (or subtract, if a piece is a hole).

Worked examples

Circumference of a wheel, diameter 70 cm: C = π × 70 ≈ 3.14 × 70 = 219.8 cm. One full roll moves it about 2.2 m.

Area of a pizza, radius 15 cm: A = π × 15² = π × 225 ≈ 706.9 cm².

A track end — a semicircle of radius 10 m:

Curved length = half of circumference = ½ × 2 × π × 10 = π × 10 ≈ 31.4 m
Area          = half of a circle      = ½ × π × 10²      ≈ 157.1 m²

Composite: a window — a 2 m wide, 3 m tall rectangle topped by a semicircle (radius 1 m):

PieceArea
Rectangle2 × 3 = 6 m²
Semicircle½ × π × 1² ≈ 1.57 m²
Total≈ 7.57 m²

The generative-art connection

Circles are the canvas of generative art, and π sets its scale. Mark n equally spaced points around a circle, then from each point k draw a chord to point 2k (its times-table double). The envelope of all those chords traces a heart-shaped curve — a cardioid — purely from a rule about a circle. The Coding Train’s Times Tables challenge above builds exactly this; changing the multiplier from ×2 to ×3 morphs the cardioid into nested loops.

You can feel the same maths in nico.art’s dot-multiplier: dots spread evenly around a centre, and how far apart they land depends on the circumference 2 π r shared between them. More arms means the same ring-length is cut into smaller steps — circle measurement, made visible and playable.

Common misconceptions

  • Mixing up radius and diameter. The area formula uses the radius. Given a diameter, halve it first — squaring the wrong one gives four times the answer.
  • Thinking π is exactly 3.14. That is a rounding; π runs on forever. Use more digits (or your calculator’s π key) when accuracy matters.
  • Treating perimeter and area the same way. Circumference grows in step with the radius; area grows with the square of it. Double the radius and the circumference doubles, but the area quadruples.

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. A round pond has radius `4 m`. Using `π ≈ 3.14`, find (a) its circumference and (b) its area. Give units.

    Answer

    (a) `C = 2 × π × r = 2 × 3.14 × 4 = 25.12 m`. (b) `A = π × r² = 3.14 × 4² = 3.14 × 16 = 50.24 m²`. Note the units: circumference is a length (`m`), area is a surface (`m²`).

    Art hook Draw the pond as a filled circle, then animate a small dot rolling once around the rim; unroll its path into a straight bar of length `2πr` beside the circle so the child sees the circumference as a length.

  2. A bicycle wheel has diameter `60 cm`. How far does the bike travel in one full turn of the wheel? Use `π ≈ 3.14`.

    Answer

    One turn moves the bike forward by one circumference: `C = π × d = 3.14 × 60 = 188.4 cm`, which is about `1.88 m`.

    Art hook Show a wheel with one marked spoke; each frame, rotate the wheel and slide it right by the arc it has rolled, tracing a bouncing cycloid trail as the marked point moves.

  3. A running track has two straight sides `100 m` long and two semicircular ends, each of diameter `40 m`. What is the total distance around the track? Use `π ≈ 3.14`.

    Answer

    The two semicircular ends together make one full circle of diameter `40 m`: `π × 40 = 125.6 m`. Add the two straights: `2 × 100 = 200 m`. Total perimeter `= 200 + 125.6 = 325.6 m`.

    Art hook Render the stadium outline, then place `N` dots spaced evenly by arc-length around the whole perimeter so their spacing is identical on the straights and the curves; let them chase each other around the loop.

  4. A square lawn of side `10 m` has a circular flower bed of radius `3 m` cut into the middle. What area of grass is left? Use `π ≈ 3.14`.

    Answer

    Grass = square − circle. Square `= 10 × 10 = 100 m²`. Circle `= 3.14 × 3² = 3.14 × 9 = 28.26 m²`. Grass left `= 100 − 28.26 = 71.74 m²`.

    Art hook Fill the square with green dots, then recolour every dot that falls inside the circle; a live counter shows the green count shrinking as you drag the circle's radius.

  5. A circular tabletop has a circumference of about `157 cm`. Working backwards, what is its diameter? Use `π ≈ 3.14`.

    Answer

    Since `C = π × d`, we reverse it: `d = C ÷ π = 157 ÷ 3.14 = 50 cm`.

    Art hook A slider controls the circumference; the circle redraws with the matching diameter each frame, and a readout shows `d = C ÷ π` updating so the inverse relationship is felt live.

Training exercises

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

  1. A circle has radius `5 cm`. What is its diameter?

    Answer

    `d = 2 × r = 2 × 5 = 10 cm`.

    Art hook Draw a circle with a line through the centre (the diameter) and one from centre to edge (the radius); a toggle lays two radii end to end to show the diameter is exactly two radii long.

  2. Fill in the two circle facts: `C = π × ___` and `A = π × ___`.

    Answer

    `C = π × d` (the diameter). `A = π × r²` (the radius, squared). Circumference uses the diameter; area uses the radius times itself.

    Art hook Two side-by-side cards, one showing a ring outline (circumference) and one a filled disc (area), each captioned with its formula — click a card to animate that measure being built.

  3. A coin has diameter `2 cm`. Estimate its circumference using `π ≈ 3.14`.

    Answer

    `C = π × d = 3.14 × 2 = 6.28 cm`.

    Art hook Place several coins in a grid; each coin is labelled with its rim length, and the coins pulse in size while their circumference labels update to show `C` growing with `d`.

  4. A circle has radius `10 cm`. Find its area using `π ≈ 3.14`.

    Answer

    `A = π × r² = 3.14 × 10² = 3.14 × 100 = 314 cm²`.

    Art hook Fill the circle by growing concentric rings of dots outward; a bar beside it fills to `314` as the dots multiply, linking area to the `r²` growth.

  5. A pizza has radius `20 cm` and a plate has radius `10 cm`. Without a full calculation, whose area is bigger, and roughly how many times bigger?

    Answer

    The pizza. Doubling the radius makes the area `2² = 4` times bigger, so the pizza's area is about `4×` the plate's. (Check: pizza `≈ 1256 cm²`, plate `≈ 314 cm²`.)

    Art hook Two circles, one radius double the other; tile both with identical small squares and count them — the big circle holds four times as many, revealing the squared scaling.

  6. Sam says: "The radius is `6 cm`, so the area is `π × 6 × 2 = 37.7 cm²`." Spot Sam's mistake and give the correct area (`π ≈ 3.14`).

    Answer

    Sam doubled the radius instead of squaring it. Area uses `r²`, not `r × 2`. Correct: `A = π × 6² = 3.14 × 36 = 113.04 cm²`.

    Art hook Show the two readings side by side — one circle split into `6 × 2` strips, one into a `6 × 6` grid of squares — so the wrong and right pictures sit next to each other.

  7. A semicircular rug has a straight edge (the diameter) of `140 cm`. Find the length of its curved edge using `π ≈ 3.14`.

    Answer

    The curved edge is half a full circumference. Full `C = π × d = 3.14 × 140 = 439.6 cm`; half is `219.8 cm`.

    Art hook Draw the semicircle; a dot travels the curved edge only, and its trail unrolls into a bar exactly half the length of the full-circle bar shown faintly behind it.

  8. A shape is made of a `12 cm` by `6 cm` rectangle with a semicircle of radius `3 cm` added on the short right end (the `6 cm` side). Find its total area using `π ≈ 3.14`.

    Answer

    The semicircle's diameter is `6 cm`, matching the short side it sits on. Rectangle `= 12 × 6 = 72 cm²`. Semicircle `= ½ × π × 3² = ½ × 3.14 × 9 = 14.13 cm²`. Total `= 72 + 14.13 = 86.13 cm²`.

    Art hook Build the composite from two coloured layers — a blue rectangle and a red half-disc — that slide together; a total-area counter sums the two pieces as they join.

  9. A circle has area `28.26 cm²`. Working backwards, what is its radius? Use `π ≈ 3.14`.

    Answer

    `r² = A ÷ π = 28.26 ÷ 3.14 = 9`, so `r = √9 = 3 cm`.

    Art hook A slider sets the target area; the circle grows or shrinks until `π r²` matches, with a readout showing the `r² = A ÷ π` step and then the square root.

  10. A washer is a metal disc of radius `5 cm` with a circular hole of radius `2 cm` punched out of the middle. Find the area of metal left using `π ≈ 3.14`.

    Answer

    Big circle `= π × 5² = 3.14 × 25 = 78.5 cm²`. Hole `= π × 2² = 3.14 × 4 = 12.56 cm²`. Metal left `= 78.5 − 12.56 = 65.94 cm²`.

    Art hook Draw a ring (annulus): fill the outer disc with dots, then erase every dot inside the inner circle, and a counter shows the metal-dot total as you widen the hole.

  11. Two children measure round tins and record `circumference ÷ diameter`: `3.10`, `3.16`, `3.14`, `3.15`. What special number are they closing in on, and why isn't every answer identical?

    Answer

    They are approaching `π ≈ 3.14159…` — for every circle, `C ÷ d` gives this same number, π. The small differences come from measuring error, not from π changing; more careful measuring clusters closer to `3.14`.

    Art hook Plot many measured `C ÷ d` points on a number line; they jitter around a glowing mark at `3.14159`, and averaging more points pulls the marker onto π.