Prove that the number of ways choosing k integers from the integers 1,2,3...n, such that no two of the chosen integers are consecutive is:
(n-k+1) C k [as in : (n-k+1)CHOOSE(k) ]
with a suitable adjustment when n - k +1 < k
Prove that the number of ways choosing k integers from the integers 1,2,3...n, such that no two of the chosen integers are consecutive is:
(n-k+1) C k [as in : (n-k+1)CHOOSE(k) ]
with a suitable adjustment when n - k +1 < k
Note that; from the set
the subset
can be represented by the string 001010101. If fact, any subset of four such that no two are consecutive can be represented by a 9-bit string of four 1’s and five zeros in which there are no adjacent 1’s.
Thus, from the setwe can use an n-bit string consisting of k 1’s and n-k 0’s, having no adjacent 1’ to represent a subset of k elements containing no consecutive integers.
Ah. I can see how you can use an n-bit string to represent the problem.
Does that meanis the number of ways to arrange 1's and 0's in an n-bit string so that no two 1's are consecutive?
And if so, how can I prove that is the case?