Integer trianglesPerimeter up to 30
Count the triangles with whole-number sides and the given perimeter, and show why the impossible ones are out.
Three whole-number sides that add up to twenty — how many different triangles can you make? Fewer than you would guess, because most ways of splitting twenty into three parts cannot bend into a triangle at all.

The answer key prints on a separate page.
Order the sides so the shortest comes first: a, then b, then c, adding to the perimeter. Three lengths only close into a triangle when the two shorter ones out-reach the longest — a plus b has to be more than c — otherwise they lie flat and never meet above it. That single condition, the triangle inequality, is the whole puzzle: split the perimeter every way you can, then keep only the splits that pass it.
The mistake almost everyone makes is to count every way to write the perimeter as three whole parts and stop there. For a perimeter of twenty that is far too many, because splits like 1, 1, 18 or 2, 3, 15 are on the list and none of them is a triangle — the short sides cannot span the long one. Seeing which splits to throw away is most of the work, and it is the thing the sheet is really teaching.