|
|
Optimal Exploitative Bluffing
Through a similar process as above, we determine that for a deck of T cards, Hero bluffing a hand n < k <= T is better than checking when:
k >= (n/P) + (n+1)
Interpreting this result is very important and gives a lot of insight into when we should be bluffing and when we should be checking down for showdown value in scenarios like this.
As Regards the Fundamental Theorem of Poker
Note that h_n+1 is the best hand that Villain does not call with. Also not that because P > 0 that n/P > 0, so we have k >= n+1, and note that we can never have k = n+1. What this means is that we will never be betting with h_n+1 because it's never better than checking. Note that Villain can never call with worse or fold better if we bet h_n+1.
When the Pot is Very Large
When the pot is large, intuitively we should be bluffing more often. When P is large, n/P is very small. As P approaches infinity, n/P approaches zero, and we have k >= n+1, meaning we'll be bluffing every hand worse than h_n+1.
When the Pot is Very Small
When the pot is small, intuitively we should be bluffing less often. When P is small, n/P is very small. As P approaches zero, n/P approaches infinity, and we have k >= infinity, meaning that we'll never be bluffing.
The Total Bluffing Range (Villain calls T+)
Let's take a look at the scenario in the 13-card game where our opponent is calling a bet with T+. In this game, T = 13 and n = 5:
Code:
A 1
K 2
Q 3
J 4
T 5
9 6
8 7 P >= 5/1 = 5.00
7 8 P >= 5/2 = 2.50
6 9 P >= 5/3 = 1.67
5 10 P >= 5/4 = 1.25
4 11 P >= 5/5 = 1.00
3 12 P >= 5/6 = 0.83
2 13 P >= 5/7 = 0.71
The first column is the card, the second column is the k-value for each card h_k, and the third column is for what values of P we can bluff. So for betting an 8, which makes k = 7, we need P >= 5/2.
So for example, if P = 1.1, then the optimal exploitative bluffing range is betting a 4, a 3, and a 2.
As the pot size increases, it makes sense that we'll be bluffing with more hands since the reward is larger for the same risk. Similarly, as the pot size decreases, it makes sense that we'll be bluffing with fewer hands since the reward is smaller for the same risk.
|