Upper bound for probability of sample mean deviation from true mean.
Proof
TODO Uses Markov’s Inequality
Implementation
hoeffding_bound(n, thresh, upper_bound, lower_bound):
return 2 * math.exp(- 2*n*thresh**2 / (upper_bound-lower_bound)**2)Upper bound for probability of sample mean deviation from true mean.
TODO Uses Markov’s Inequality
hoeffding_bound(n, thresh, upper_bound, lower_bound):
return 2 * math.exp(- 2*n*thresh**2 / (upper_bound-lower_bound)**2)