$A_{1},A_{2},A_{3}…A_{12}$ is a 12 sided polygon. How many quadrilaterals can be formed using these 12 vertices, so that no side is common.

combinatorics

MY TRY:

We take a circle. On that circle we put four of the 12 points. Between those points there are 4 gaps. Each gap must have at minimum 1 point. Therefore by star and bars method-

a,b,c,d are the gaps:
$$a+b+c+d=8$$
$a,b,c,d\geq 1$:
$$a+b+c+d=4$$
which becomes $\binom{7}{3}$ = $\bbox[5px,border:2px solid red]{35}$.
However the answer is 105. Obviously I am missing a factor of 3. But I do not know how that will come in.

Best Answer

There's 2 factors to take into consideration here:

  1. no. of vertices remains constant

  2. we actually have to use the gaps in between the vertices to obtain the result and not the vertices themselves

Lets say you have an n sided polygon and you're trying to find out how to construct an m sided polygon such that no side is common to the base polygon. We can start by considering the vertices to already have been selected, meaning m of n possible candidates have already been selected and that leaves us with (n - m) vertices. Now, m vertices in a polygon also generate m gaps in between them. Lets say that for any 2 corners 'A1' and 'A2' that are part of the m selected vertices there are V vertices in between them. Since there are m gaps, we can denote the number of unused vertices between 'Ai' and 'Aj' as V and since there are n-m unused vertices in total we can write:

V1 + V2 + V3 ...... V(m) = n-m

now if no side is to be common to the n sided polygon, that means the number of unused vertices between and 2 selected vertices has to be greater than 1. We can write V = V' + 1, therefore our new condition becomes:

-> V'1 + 1 + V'2 + 1 ..... V'(m) + 1 = n - m

-> V'1 + V'2 + V'3 ....... V'(m) + m = n - m

-> V'1 + V'2 + V'3 ....... V'(m) = n - 2m

Now the problem is like finding all non-zero integer solutions to this condition which happens to be C((n-2m)+(m-1),(m-1)) = C(n-m-1,m-1).

But the problem here is that it counts all the V' terms as distinct, like how (0,1) is different from (1,0) so we have to divide it by the number of cyclic permutations it can have which is (m-1)! (Reason is because corners are similar). Its not finished yet because we can rotate polygon n times meaning we should multiply by n.

The final result is ((n)*C(n-m-1,n-1))/(m-1)!

If I've done a mistake please do correct me.