Question: In how many ways can 3 vertices be selected from a decagon so no two are consecutive?
Once I choose one of the vertices, since the adjacent ones are ruled out, I now have 7 vertices to choose my next one from. Similarly, the next time around, I will have 4 vertices to choose from. Additionally, I accounted for overlapping triangles by dividing my answer with 3.
My final answer looks like this: (10C1 * 7C1 * 4C1)/3 which isn't even a natural number.
Where am I going wrong?