Skip to main content

flopToTurnAtLeastOneHitDisjointOutsSum

Sum disjoint outs, then one-street hit formula.

flopToTurnAtLeastOneHitDisjointOutsSum(unseen: number, outsPerCategory: number[]): number

Import

const poker = require('poker-calculations');

ESM (Node):

import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const poker = require('poker-calculations');

When to use

Categories do not share outs. Sum raw out counts, then apply the one-street hit formula on flop→turn.

How to use

const unseen = 47;
const outsPerCategory = [9, 4]; // flush + gutshot, disjoint

const p = poker.flopToTurnAtLeastOneHitDisjointOutsSum(unseen, outsPerCategory);
console.log(p); // 13/47

See also

flop-to-turn-at-least-one-hit-probability