'In how many ways can we arrange objects?' (Permutation) and 'In how many ways can we select objects?' (Combination). Understanding the difference is crucial for NDA success.
PERMUTATION deals with ARRANGEMENT. Order matters here. If you have 3 books A, B, C, then ABC and BAC are different arrangements.
The formula is nPr = n!/(n-r)! where n is total objects and r is objects being arranged.
COMBINATION deals with SELECTION. Order does not matter. Selecting books A, B is same as selecting B, A. The formula is nCr = n!/[r!(n-r)!]