HomeArticlesGame Mathematics

Poker Odds: Outs, Pot Odds and Equity in Texas Hold'em

How to count outs, why the rule of 4 and 2 works, and the one comparison — equity versus pot odds — that actually decides whether a call is profitable.

mysimulator teamUpdated June 2026≈ 7 min read▶ Open the simulation

Counting hands, not guessing them

Texas Hold'em odds are, underneath the table talk, an exercise in counting. There are exactly C(52,2) = 1,326 distinct two-card starting hands (or 169 if you only distinguish by rank and suitedness, since suits are symmetric before the flop). Once the board starts coming down, every subsequent probability is a ratio of combinations: the number of remaining unseen cards that complete your hand, divided by the number of unseen cards left in the deck.

C(n, k) = n! / (k! · (n − k)!)     — number of ways to choose k cards from n

after the flop:  52 − 2(hole) − 3(flop) = 47 unseen cards
after the turn:  47 − 1(turn)           = 46 unseen cards

Outs and the rule of 4 and 2

An out is any unseen card that improves your hand to (very likely) the best hand — for example, with four cards to a flush after the flop, there are 9 remaining cards of your suit out of 47 unseen, so you have 9 outs. Computing the exact probability of hitting at least one out over both the turn and river involves combinatorics on the remaining deck, but poker players use a fast mental shortcut, the rule of 4 and 2: multiply your out count by 4 to estimate the chance of hitting by the river with two cards still to come, or by 2 to estimate the chance of hitting on the very next single card.

9 outs (flush draw) after the flop:
  rule-of-4 estimate:  9 × 4 = 36%   (true value ≈ 35%, two cards to come)
  rule-of-2 estimate:  9 × 2 = 18%   (true value ≈ 19%, one card to come)
live demo · outs, pot odds and equity updating street by street● LIVE

Pot odds vs. equity: the actual decision rule

Pot odds compares the cost of a call to the size of the resulting pot: if the pot is $80 and it costs $20 to call, you're being offered 100-to-20, or 4-to-1 — equivalently you need to win at least 1/(4+1) = 20% of the time for the call to break even. Equity is your actual probability of winning the hand given the known cards, computed from outs or from full enumeration. The rule that actually governs a mathematically sound decision is simple: call whenever your equity exceeds the pot odds required to break even, fold when it's lower — everything else (outs, the rule of 4 and 2, hand-strength charts) exists only to estimate that one equity number quickly at the table.

Equity by full enumeration vs. Monte Carlo

For a specific pair of hands and a specific set of known board cards, exact equity can be computed by enumerating every possible way the remaining community cards could come out, evaluating the final best five-card hand for each player in every case, and taking the win/tie/loss fraction — after the flop there are only C(47,2) = 1,081 possible turn-river combinations, cheap enough to brute-force instantly. Preflop, with the full 52-card deck and many possible opponent ranges, exhaustive enumeration is still tractable for a single matchup but becomes expensive for multi-way pots against wide ranges, so professional solvers typically fall back to Monte Carlo sampling — simulating thousands of random deals and averaging the outcome — trading a small amount of statistical noise for a large speed gain.

Why a pair of aces isn't a guaranteed win

Pocket aces is the single strongest starting hand and wins roughly 85% of the time heads-up against a random hand — but not 100%, because the board itself can pair, straighten or flush independently of what either player holds. This is the same reason favourites lose in any probabilistic contest: a well-defined edge compounded over many hands turns into reliable long-run profit, but any single hand carries genuine variance that no amount of starting-hand strength eliminates.

Frequently asked questions

What exactly is an 'out' in poker?

An out is any unseen card remaining in the deck that, if it comes, is very likely to give you the winning hand. With a four-card flush draw after the flop, for example, there are 9 remaining cards of the needed suit among the 47 unseen cards, so you have 9 outs.

Is the rule of 4 and 2 exactly accurate?

It's a close approximation, not an exact formula — it slightly overstates probability with high out counts (above roughly 8) because it doesn't fully account for the two draws not being independent events. For quick in-hand decisions it's accurate enough; exact equity requires full combinatorial enumeration or Monte Carlo simulation.

Should you always call when your equity is above the pot odds?

Basic pot-odds math says a call is profitable in isolation whenever your equity exceeds the percentage the pot is laying you, which is the correct baseline decision rule. Real play adjusts around it for implied odds (money you can win on later streets) and fold equity from bluffing, but the pot-odds-versus-equity comparison remains the mathematical foundation underneath those adjustments.

Try it live

Everything above runs in your browser — open Poker Hand Odds and change the parameters while it is running. Nothing is installed, nothing is uploaded, the whole model lives in one tab.

▶ Open Poker Hand Odds simulation

What did you find?

Add reproduction steps (optional)