Skip to main content

tripsMadeFlopToRiverExactProbability

Exact trips+ by river.

Card lists use CardInput (string[] or packed Uint8Array). See Card notation.

tripsMadeFlopToRiverExactProbability(heroHoleCards: CardInput, flopThree: CardInput, knownDead: CardInput): 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

Exact trips or better by the river.

How to use

const hole = ['Ah', 'Kd'];
const flop = ['Ac', '7h', '9c'];

console.log(poker.tripsMadeFlopToRiverExactProbability(hole, flop, []));

See also

two-pair-made-flop-to-river-exact-probability