Quote:
the old one was correct though. you want to make the opponent indifferent between calling and folding.
this of course given the oversimplified case of nut/air vs bluff catcher scenario.
I studied this a bit further and asked a few GTO guys. One thing I hadn't considered was the optimal bet size to make him indifferent
So I take my perceived range which only includes hands I could actually bet for value and total air OTR:
Code:
TotalCombos = ValueCombos+BluffCombos
BluffPercent = (BluffCombos/TotalCombos)/100
ValuePercent = (ValueCombos/TotalCombos)/100
BetSize = ValuePercent - BluffPercent
BetSize = BluffPercent/BetSize
BetSize = PotSize*BetSize
Example: Lets say I have 36% bluff combos and 64% value combos. So in this case I actually rep quite a bit of value. So the optimal betsize in this case would be 1.3 pot which would make him indifferent to calling or folding. If I was bluffing in this spot it would look pretty weak to bet 1.3 pot however...but my range looks so strong that it looks like it could be an act. So I guess it all balances outs which is why its optimal for a baseline bet...I think..
This GTO stuff can get confusing.
EDIT. One thing about this formula is that it assumes your range construction is nearly GTO correct which I believe is 2:1 value to bluff combos.