2017 UNCO Math Contest II Problems/Problem 9

Problem

[asy]  pair A=dir(0),B=dir(80),C=dir(160),D=dir(310),O=(0,0); draw(circle(O,1),black); draw(A--B--C--D--A--C--B--D);  [/asy]

Suppose n points on the circumference of a circle are joined by straight line segments in all possible ways and that no point that is not one of the original n points is contained in more than two of the segments. How many triangles are formed by the segments? Count all triangles whose sides lie along the segments, including triangles that overlap with other triangles. For example, for n = 3, there is one triangle and for n = 4 (shown in the diagram), there are 8 triangles.

Solution

Since any $3$ pairwise intersecting lines make a triangle, so we can split the possibilities into $4$ cases:

Case 1: All vertices of the triangle are points on the circle

Any $3$ points will work, so it's ${n}\choose{3}$

[asy]  pair A=dir(0),B=dir(80),C=dir(160); draw(unitcircle); draw(A--B--C--A);  [/asy]


Case 2: 2 vertices of the triangle are points on the circle

There will be $4$ points to choose from, but you also have to multiply by the number of orientations ($4$), so $4$${n}\choose{4}$

[asy]  pair A=dir(0),B=dir(80),C=dir(160),D=dir(310); draw(unitcircle); draw(A--C--B--D);  [/asy]

Case 3: 1 vertex of the triangle is a point on the circle

There will be $5$ points to choose from, but you also have to multiply by the number of orientations ($5$), so $5$${n}\choose{5}$

[asy]  pair A=dir(0),B=dir(80),C=dir(160),D=dir(210),E=dir(300); draw(unitcircle); draw(A--C--E); draw(B--D);  [/asy]

Case 4: All vertices of the triangle are points on the circle

Any $6$ points will work, so it's ${n}\choose{6}$

[asy]  pair A=dir(0),B=dir(130),C=dir(160),D=dir(210),E=dir(270),F=dir(320); draw(unitcircle); draw(A--D); draw(B--E); draw(C--F);  [/asy]

Thus there are a total of $\boxed{\binom{n}{6}+5\binom{n}{5}+4\binom{n}{4}+\binom{n}{3}}$ different triangles.

See also

2017 UNCO Math Contest II (ProblemsAnswer KeyResources)
Preceded by
Problem 8
Followed by
Problem 10
1 2 3 4 5 6 7 8 9 10
All UNCO Math Contest Problems and Solutions