The points 1 , 2 , … , 9 are labelled clockwise around a circle. How many ways can a subset of the chords be drawn between these points so that no pair of chords intersects?
Details and assumptions
Chords are not allowed to intersect at vertices nor at interior points.
It is implicit in the question that since an odd number of points are given, not all the points will correspond to a chord.
The empty set of chords satisfies the above conditions.
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.
Noticing that this problem can be solved via a recurrence relation makes the question much easier to solve. Trying to count configurations of chords and the number of ways each configuration occurs was prone to errors in calculation, missing some configurations and double-counting other cases. This was the only correct solution submitted.
Let S k be the number of ways to draw chords as described above with points labelled 1 , 2 , … k . Then S 0 = S 1 = 1 , and we see that S 2 = 2 since we can either draw the chord between the points or not.
We claim that S k = S k − 1 + i = 0 ∑ k − 2 S i S k − 2 − i . First note that there are S k − 1 ways to draw chords such that no chord uses the point k . The number of ways to draw the chords so that there is a chord from k to j is S j − 1 S k − j − 1 , since this chord divides the remaining points into two sets of size j − 1 and k − j − 1 respectively. As j ranges from 1 to k − 1 we get the claimed sum.
Using the recursive formula S k = S k − 1 + i = 0 ∑ k − 2 S i S k − 2 − i , we construct the following table of values for S k .
k S k 0 1 1 1 2 2 3 4 4 9 5 2 1 6 5 1 7 1 2 7 8 3 2 3 9 8 3 5
Thus, there are 8 3 5 ways to choose a set of chords such that none of them intersect.
The number of ways of drawing non-intersecting chords between k points is given by the Motzkin number M k .
As such the number of non-intersecting chords which we can draw between 9 points is the 9 t h Motzkin number which is given by M 9 , which is equal to 8 3 5 .
Problem Loading...
Note Loading...
Set Loading...
Let a k be the number of valid configurations for k points. Pick an arbitrary point p 1 . The point p 1 can either not be used as the end point of a chord, in a k − 1 ways, or it can be connected to any other point p 2 , in which case it splits the remaining points into two groups without chords between them. Both smaller groups can be considered to be independent smaller instances of the same problem, so we can multiply their number of configurations.
This can be written as a k = a k − 1 + ∑ i = 0 k − 2 a i × a k − 2 − i , which, starting with a 0 = 1 , gives the sequence:
1 , 1 , 2 , 4 , 9 , 2 1 , 5 1 , 1 2 7 , 3 2 3 , 8 3 5 , …