Understanding Permutations vs Combinations
Permutation considers order when selecting items (AB ≠ BA), while combination does not (AB = BA). For selecting 2 from ABC: permutation gives 6 results (AB, BA, AC, CA, BC, CB), combination gives 3 (AB, AC, BC). Use permutations for passwords or race rankings where order matters, combinations for team selection or lottery numbers where order does not matter.