Choosing m (=2) objects out of given n(=6) unique objects:
- Given objects: a, b, c, d, e, f. Number of pairs will be 15.
- (Strat I) Choosing ith (1 ≥ i < n) object and form a pair with any other jth (i < j ≤ n) object :
- (a,b), (a,c), (a,d), (a,e), (a,f)
- (b,c), (b,d), (b,e), (b,f)
- (c,d), (c,e), (c,f)
- (d,e), (d,f)
- (e,f)
- (Strat II) Choosing pairs that are adjacent, 1 "unit away", ...,4 "units away":
- choosing adjacent pairs (5):
- (a,b)
- (b,c)
- (c,d)
- (d,e)
- (e,f)
- choosing objects that are one "unit away" (4):
- choosing objects that are two "units away" (3):
- choosing objects that are three "units away" (2):
- choosing objects that are four "units away" (1):
|
Occupying m(=2) slots out of available n(=6) slots:
- Slots: | | | | | | |. Number of ways 2 slots can be occupied will be 15.
- (Strat I)
- adjacent arrangements (5)
- |.|.| | | | |
- | |.|.| | | |
- | | |.|.| | |
- | | | |.|.| |
- | | | | |.|.|
- one slot empty between the two occupied slots (4)
- |.| |.| | | |
- | |.| |.| | |
- | | |.| |.| |
- | | | |.| |.|
- two slots empty between the two occupied slots (3)
- |.| | |.| | |
- | |.| | |.| |
- | | |.| | |.|
- three slots empty between the two occupied slots (2)
- |.| | | |.| |
- | |.| | | |.|
- four slots empty between the two occupied slots (1)
- (Strat II): Assigning letters a-f to the slots, the number of ways two slots can be occupied is same as the problem solved on the left column.
|