Example 3.19. A medical student has to work in a hospital for five days in January. However, he is not allowed to work two consecutive days in the hospital. In how many different ways can he choose the five days he will work in the hospital?
Solution. The difficulty here is to make sure that we do not choose two consecutive days. This can be assured by the following trick. Let $a_1$, $a_2$, $a_3$, $a_4$, $a_5$ be the dates of the five days of January that the student will spend in the hospital, in increasing order. Note that the requirement that there are no two consecutive numbers among the $a_i$, and $1 \le a_i \le 31$ for all $i$ is equivalent to the requirement that $1 \le a_1 \lt a_2 - 1 \lt a_3 - 2 \lt a_4 - 3 \lt a_5 - 4 \le 27$. In other words, there is an obvious bijection between the set of 5-element subsets of $[31]$ containing no two consecutive elements and the set of 5-element subsets of [27]. Instead of choosing the numbers $a_i$, we can choose the numbers $1 \le a_1 \lt a_2 - 1 \lt a_3 - 2 \lt a_4 - 3 \lt a_5 - 4 \le 27$, that is, we can simply choose a five-element subset of $[27]$, and we know that there are $27 \choose 5$ ways to do that.
Note: the bracket notation $[27]$ means $\{1,2,3,...27\}$.
Was reading this example from A Walkthrough Combinatorics (Bona), but I'm not really sure I follow what the "obvious bijection" is suppose to be. Does this mean that if I choose a random five-element subset of $[27]$ say: $\{1,7,27,25,6\}$ then ordered it from least to greatest: $\{1,6,7,25,27\}$ then to map to the actual days (the five-element subset of $[31]$) I would compute:
$\{1+0, 6+1, 7+2, 25+3, 27+4\} = \{1, 7, 9, 28, 31\}$ So the bijection (to map from a five element set of [27]) is to add 0,1,2,3,4 to that ordered set? (Sorry not really sure how to express this in more mathematical notation)