paU1i
In how many different ways can you arrange 4 letters a, b, c, and d in a straight line so that 'b' comes before 'c'?
A. 2
B. 4
C. 6
D. 12
E. 14
Note: b has to appear 'before' c, not necessarily 'immediately before'.
One line solution: Total arrangements of a, b, c, d = 4! = 24
This allows for all letter to interchange positions among themselves in all possible ways. However, you DO NOT WANT b and c to interchange since b must appear before c. Thus, allowing the other letters to interchange in any manner possible, you simply want to CONSTRAIN the arrangements of b ad c which could have been done in 2! ways.
Thus, required number of ways = 4!/2! = 24/2 = 12(Observe that it is similar to what would have happened if b and c were the same letter. Try to link these 2 concepts)Answer DMulti-line solution:Possible cases:
b _ _ _ => c can be anywhere; hence interchange the 3 letters in 3! = 6 ways
_ b _ _ => 1st position is not c; hence, number of ways = 2 x 2 x 1 = 4 ways
_ _ b _ => 1st and 2nd positions are not c; hence, number of ways = 2 x 1 x 1 = 2 ways
Note: b cannot be in the last position since it has to be before c
Total = 6 + 4 + 2 = 12
Answer D