For a regular polygon with number of sides n, how many diagonals can be drawn?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
If n sides, so n vertices.
Each vertex is linked to n-3 vertices (n vertices less itself, and less 2 consecutive vertices).
n-3 diagonal segments, multiplied by n vertices.
Then divide by 2, because each segment [AB] is [BA], so they were counted exactly twice.