There are n sides of a polygon(where $n>5$).
Triangles are formed by joining the vertices of the polygon. How many triangles can be constructed with no side common to the polygon?
My try:
Total possible triangles = $\frac{(n)(n-1)(n-2)}{6} = \binom{n}{3}$ ------(1)
Triangles with 2 sides common = $n$ ------(2)
Triangles with 1 side common = $n(n-4)$ ------(3)
So, with no side common = $1-2-3$
Is there any other way to get it directly without following this process?
We count the number of "good" triangles with one vertex painted blue.
The blue vertex can be chosen in $n$ ways. For every one of these ways, the two neighbouring vertices are forbidden. That leaves $n-3$ vertices. Write down $n-5$ stars, with a little space between them, like this: $$\ast\qquad\ast\qquad\ast\qquad\ast\qquad\ast\qquad\ast\qquad\ast\qquad\ast$$ That determines $n-4$ "gaps" ($n-5$ ordinary gaps, plus $2$ endgaps) to slip our $2$ remaining vertices into.
There are $\binom{n-4}{2}$ ways to choose these gaps. So there is a total of $n\binom{n-4}{2}$ good triangles with a blue vertex.
This counts each uncoloured good triangle $3$ times. So the number of these is $\frac{1}{3}\cdot n\binom{n-4}{2}$.
Note that the idea generalizes to good (convex) quadrilaterals, and so on.