How many sides does a polygon have if it has 2015 diagonals?
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.
For those who don't know, n C r or ( r n ) refers to the number of ways r items can be selected from n items at once (irrespective of the arrangement in which they are selected). This is known as Combination .
For an n -sided polygon with d diagonals, we have ( 2 n ) − n = d , because, by definition, a diagonal of a polygon is the line segment other than the sides of the polygon made by joining any 2 points of the polygon.
P.S - Sorry for bad grammar! :P
Instead of checking via brute force, note that 4 0 3 0 ≈ 6 3 . 4 8 2 is slightly below n . Since 4030 is a multiple of 10, the only possibility is n = 6 5 .
Another way is to use the quadratic formula and neglect the negative root of the equation n 2 − 3 n − 4 0 3 0 = 0 giving us the value of n = 6 5 .
I use this way to solve :)
You're right
Use the formula to find the number of diagonals: 2 n ( n − 3 ) where n is the number of the sides. Given the diagonals, just solve for n , which is 6 5
The number of diagonals in a polygon = n ( n − 3 ) / 2
Equating, 2 0 1 5 = n ( n − 3 ) / 2 ,
We get n = 6 5
To solve it intuitively, first try count every lines possible. To make a line, there should be at least two points. If its n-polygon, than one point can have (n-1) lines. As there are 'n' points, The number of total line is n(n-1). However, as it is duplicated, it should be divided by two. To briefly say, n-poligon has n(n-1)/2 -n diagonals, counting out its circumferential segments.
if solve 2015=n(n-1)/2-n, than n=65 or -62. However, as 'n' should be positive number, the answer is 65.
Sorry for poor grammar :-)
Problem Loading...
Note Loading...
Set Loading...
In number of sides of the polygon is n , then
n C 2 − n = 2 0 1 5
or, n ( n − 3 ) = 6 5 ∗ 6 2
or, n = 6 5