I have a statement that says:
How many diagonals can be traced in a regular decagon (10-sided polygon)?
My development was:
First the diagonals, are drawn to non-consecutive vertex, so are $8$ available vertex. And we want to select 2 vertex, the fixed point and the point to which I will draw the diagonal.
So i use: $\frac{n!}{(n - r)! * r}$, also for each vertex, I do not take into account the fixed vertex, this is done 10 times, so I will subtract 10.
Then, the my final result is $\frac{8!}{(8-2)! * 2!} - 10$,
but the correct result must be $\frac{10!}{(10 - 2)! * 2!} - 10$, Where is my error?
Choose a vertex ($10$ possible ways) join it to any of the other $7$ possible vertices, this will double count the diagonals so there are $10 \times 7 /2$ possible diagonals.