Counting rectanglesGrids up to 12 dots
Count the rectangles you can make from a grid of dots, and show why it is a product of two combinations.
A grid of dots, and every rectangle you can draw with its sides on the grid. A 4-by-4 grid has 36 of them — but the child who counts only the little squares stops at 9, because they forgot every rectangle bigger than one cell.

The answer key prints on a separate page.
A rectangle with sides on the grid is pinned down by choosing two of the columns — its left and right edges — and two of the rows — its top and bottom. So the count is a PRODUCT of two combinations: C(w,2) for the columns and C(h,2) for the rows. A 4-by-4 grid of dots gives C(4,2) × C(4,2) = 6 × 6 = 36. The tempting wrong answer is the number of unit cells, (w−1)(h−1) = 9, which counts only the smallest squares and forgets the larger rectangles entirely.
This is the same 'a shape is a choice' idea as counting triangles from the dots, but the correction goes the other way: nothing is subtracted here — instead two independent choices are multiplied, because every pair of columns can pair with every pair of rows. Seeing that a rectangle is two-decisions-multiplied rather than a picture to draw is the whole lesson, and it is the cleanest first taste of why combinations multiply.