If question changes to 44 , then:
A polygon has 44 diagonals, How Many Sides Does It Have?
A) 12
B) 11
C) 10
D) 9
E) 8
Consider a polygon with n vertices. Each vertex can be connected to the n-1 other vertices but two of those connections (to the two adjacent vertices) form sides of the polygon, not diagonals. So there are n-3 diagonals emanating from each of the n vertices giving n(n-3) diagonals. This formula overcounts because it counts each diagonal twice: once for each vertex on the diagonal. Divide by two to compensate for the overcounting giving n(n-3)/2 diagonals.
You can set n(n-3)/2 = 44, expand and solve the quadratic equation by factorization but this is time consuming and inefficient. Way faster is to simply plug in the answer choices for n and see which one satisfies the equation: n(n-3) = 88. Ans: n=11.
The equation a*x^2 + b*x + c = 0 has as solutions: x = ( -b + sqrt(b^2-4*a*c) ) / (2*a) or x = ( -b - sqrt(b^2-4*a*c) )
44=(n^2-3n)/2
88=n^2-3n
So there are two values for n
n = 11 or n = -8
n can't be negative
So n = 11
https://gmatint.wordpress.com/