Question
Ten points lie on the circumference of a circle. How many triangles can be formed by joining these points?
Solution — Step by Step
A triangle needs exactly 3 non-collinear points. Since all 10 points lie on a circle, no three of them are collinear — any 3 points we pick will always form a valid triangle. This is the key insight that makes this problem clean.
We need to choose 3 points from 10. Order doesn’t matter here — picking points A, B, C gives the same triangle as picking C, A, B. So we use combinations, not permutations.
The number of triangles = 120.
Why This Works
The core idea: every unique set of 3 points defines exactly one triangle. So counting triangles = counting 3-element subsets of our 10 points. That’s the definition of .
The circle condition is doing heavy lifting here. If some points were collinear (say, 3 points on the same straight line), those 3 points couldn’t form a triangle — we’d have to subtract those cases. On a circle, no three points are ever collinear, so every combination of 3 points is valid. Zero subtractions needed.
This is why circle-based PnC questions are usually cleaner than “n points in a plane, k of which are collinear” questions. The circle guarantees no collinearity for free.
Alternative Method
You can think of it as a sequential counting problem, then divide out the overcounting.
- Choose the 1st vertex: 10 ways
- Choose the 2nd vertex: 9 ways (any remaining point)
- Choose the 3rd vertex: 8 ways
That gives ordered selections. But each triangle gets counted times (once for each ordering of its 3 vertices — ABC, ACB, BAC, BCA, CAB, CBA).
Same answer. This approach builds intuition for why we divide by in the combination formula.
Quick mental check: . For : . Memorise this pattern — it shows up constantly in PnC questions on polygons and circles.
Common Mistake
Students often write thinking they need to “arrange” the vertices. This gives 720 — the number of ordered triangles, not distinct triangles. Triangle ABC and triangle BCA are the same triangle. Use , not . Use permutations only when the problem asks for something order-dependent, like “how many ways to label the vertices”.
A secondary trap: students sometimes subtract “degenerate” cases without checking. On a circle, there are no degenerate triangles — every 3 points form a proper triangle. Don’t subtract anything. The answer is simply 120.