Passwords and Security
When you create an 8-character password from 94 printable ASCII characters with repetition allowed, there are 94⁸ ≈ 6.1 trillion possible passwords. This is a permutation with replacement. Without repetition (each character appears at most once), you get P(94, 8) = 94!/86! ≈ 5.5 trillion — only slightly fewer, because 8 out of 94 characters is a small fraction. Increasing password length by even one character multiplies the possibilities by ~94×, which is why length matters far more than character-set variety alone.
Poker Hands
In a 52-card deck there are C(52, 5) = 2,598,960 distinct 5-card poker hands. Because a hand is a set of cards — not a sequence — order does not matter and we use combinations. Of those hands, only 4 are royal flushes (one per suit), giving a probability of 4/2,598,960 ≈ 1 in 650,000. Recognising that hands are combinations, not permutations, is the first step in calculating precise poker odds.
Tournament Brackets
In a single-elimination bracket of 64 teams, the number of possible outcomes is 2⁶³ ≈ 9.2 × 10¹⁸ — roughly 9.2 quintillion. Each of the 63 games has two possible winners, and results are ordered (winning the first round is not the same as winning the final), making this a permutation-style calculation. This is why a "perfect bracket" is statistically near-impossible even with domain knowledge.