All topics

s2.2.4

Number of Diagonals of a Polygon

1,000 questions

The number of diagonals in a polygon with nn vertices (an n-gon) can be calculated with a simple formula. From each of the nn vertices, you can draw (n3)(n-3) diagonals. Since each diagonal is counted twice with this method (once for each endpoint), the total number of distinct diagonals is:

Number of Diagonals = n(n3)2\frac{n(n-3)}{2}

For example, in a hexagon (n=6n=6), the number of diagonals is 6(63)2=6×32=9\frac{6(6-3)}{2} = \frac{6 \times 3}{2} = 9.

Practise this