Number of Subsets without consecutive elements
Problem Consider a set S of the first 10 natural numbers.Find the number of subsets that do not contain consecutive elements.
Solution The question is based on pure calculation and some combinatorics.
Subsets of length 0 = 1
Subsets of length 1 = 10
These two cases are straight forward.
Subsets of length 2 = number of ways we can pick two numbers out of 10 - number of ways in which we can pick two adjacent numbers
[Read More]