Question
Question: The number of permutation of n different objects taken r at a time, when p particular objects are al...
The number of permutation of n different objects taken r at a time, when p particular objects are always to be included is
P(r, p) × P(n-p, r-p)
Solution
To find the number of permutations of n objects taken r at a time including p particular objects:
Method 1: Select r−p objects from the n−p non-particular objects in (r−pn−p) ways. Combine these with the p particular objects to get a set of r objects. Arrange these r objects in r! ways. Total = (r−pn−p)×r!.
Method 2: Choose p positions out of r for the p particular objects in (pr) ways. Arrange the p particular objects in these positions in p! ways (P(r,p) ways). Arrange the remaining n−p objects in the remaining r−p positions in P(n−p,r−p) ways. Total = P(r,p)×P(n−p,r−p). Both formulas are equivalent.
Answer: The number of permutation is P(r,p)×P(n−p,r−p).
This can be written as (r−p)!r!×(n−r)!(n−p)!.
It can also be written as r!×(r−pn−p).