Find the number of distinct arrangements of the letters of the word such that no two letters are adjacent.
Answer: 1200
Answer
1200
To ensure no two letters 'L' are adjacent, we use the gap method. First, arrange the 5 non-L letters (P, A, R, A, E). Because 'A' repeats twice, there are 5! / 2! = 60 distinct arrangements. These 5 letters form 6 available gaps (including the ends). Selecting 3 of these 6 gaps to insert the 3 identical 'L's can be done in C(6, 3) = 20 ways. Multiplying these gives 60 × 20 = 1200 valid arrangements.
Step-by-Step Solution
Key Concept
Permutations with repeated elements and non-adjacency constraints using the Gap Method
Estimated Time:1m 30s