Let’s see if I can do this explanation any justice....
Imagine the 100 books in a row.
For the first selected book, there does not have to be any books before this selection. We’ll call the “GAP” before selection 1 A.
There can be 0 books in Gap A (meaning we select the 1st book on the shelf)
There can be 1 book in Gap A (meaning we select the 2nd book on the shelf)
There can be 2 books in Gap A (meaning we select the 3rd book on the shelf)
No before we make the 2nd selection, we need to have another Gap of at least 1 book in between Selection 1 and selection 2. This is because no 2 books selected can be adjacent. We can call this Gap B.
Gap B must have > or = 1 book. In other words, there must be at least 1 book separating selection 1 and selection 2.
Similarly, there needs to be another Gap (call it Gap C) between selection 2 and selection 3 that contains > or = 1 book. In other words, there must be at least 1 book separating selections 2 and 3.
Finally, after selection 3 there can be another Gap (call it Gap D). Similar to Gap A, there can be 0 books in Gap D following selection 3.
There can be 0 books after selection 3 (meaning selection 3 is the 100th book)
There can be 1 book after selection 3 (meaning selection 3 is the 99th book).
At this point it becomes a standard “Stars and Bars” type problem:
A (selection 1) B (selection 2) C (selection 3) D ——— (100 - 3 books selected = 97 books to distribute among the “gaps”)
Assuming the 97 books are like identical chocolates, we need to find all the arrangements of 97 identical chocolates and 3 partitions to determine how many different arrangements with books in and around the selections.
As a linear equation:
A + B + C + D = 97
In which B and C can be any integer that is 1 or greater
and A and D can equal any non negative integer (0 or greater)
This is similar to having to distribute 97 identical chocolates to 4 children (here the children are the “gaps”) in which:
A can receive 0 or more
B must receive at least 1
C must receive at least 1
D can receive 0 or more
After giving the 1 chocolate (the 1 book separating the selections) to B and C, we have:
A + b + c + D = 95
Solving using the partition method or stars and bars method or whichever name you want to give it, we end up with:
(95 + 3)! / 3! * 95!
98! / 3! * 95! = which is the same as “98 choose 3”
Answer (C)
Posted from my mobile device