I have a circle with N points on it, and I want to determine how many triangles can be formed using these points.
How can I do this?
Thanks!
Andrew
I have a circle with N points on it, and I want to determine how many triangles can be formed using these points.
How can I do this?
Thanks!
Andrew
Copyright © 2021 JogjaFile Inc.
Each set of $3$ of the $N$ points determines a triangle, and each triangle is determined in this way, so all you have to do is determine how many $3$-element subsets a set of $N$ things has. If you don’t already know this, you should read this article.