Loading...
Loading...
Calculate nCr, nPr, with and without repetition. Step-by-step factorial breakdown and Python code.
Enter n and r, then click Calculate.
Quick Reference:
Combinations ignore order (choosing team members), permutations care about order (assigning ranks). C(5,3) = 10 but P(5,3) = 60 because each combination of 3 items has 3! = 6 arrangements.
Use combinations when the order of selection doesn't matter. Keywords: "choose", "select", "committee", "subset", "group". Use permutations when order matters: "arrange", "rank", "sequence", "password".