vote up 1 vote down star

I've been trying to find an answer to this for months (to be used in a machine learning application), it doesn't seem like it should be a terribly hard problem, but I'm a software engineer, and math was never one of my strengths.

Here is the scenario:

I have a (possibly) unevenly weighted coin and I want to figure out the probability of it coming up heads. I know that coins from the same box that this one came from have an average probability of p, and I also know the standard deviation of these probabilities (call it s).

(If other summary properties of the probabilities of other coins aside from their mean and stddev would be useful, I can probably get them too.)

I toss the coin n times, and it comes up heads h times.

The naive approach is that the probability is just h/n - but if n is small this is unlikely to be accurate.

Is there a computationally efficient way (ie. doesn't involve very very large or very very small numbers) to take p and s into consideration to come up with a more accurate probability estimate, even when n is small?

I'd appreciate it if any answers could use pseudocode rather than mathematical notation since I find most mathematical notation to be impenetrable ;-)


Other answers: There are some other answers on SO that are similar, but the answers provided are unsatisfactory. For example this is not computationally efficient because it quickly involves numbers way smaller than can be represented even in double-precision floats. And this one turned out to be incorrect.

flag

DISCLAIMER: not a math expert. You can't possibly get a good estimate based on few tosses. The law of large numbers clearly states that you get better estimates as you get more tosses. en.wikipedia.org/wiki/Law_of_large_numbers – Martinho Fernandes Nov 8 at 16:29
I'm only looking for the best estimate I can get given the available information, something better than h/n. – sanity Nov 8 at 16:46

4 Answers

vote up 1 vote down check

You can use p as a prior on your estimated probability. This is basically the same as doing pseudocount smoothing. I.e., use

(h + c * p) / (n + c)

as your estimate. When h and n are large, then this just becomes h / n. When h and n are small, this is just c * p / c = p. The choice of c is up to you. You can base it on s but in the end you have to decide how small is too small.

link|flag
I guess my hope would be to avoid having to choose a value for c (presumably it would depend on s). – sanity Nov 8 at 19:39
In that case, you can always choose c so that the variance of the beta distribution is the observed variance. In which case I think you want to use (h + p * p * (1 - p) / v - p) / (n + p * (1 - p) / v - 1). – Jonathan Chang Nov 9 at 1:20
...to be clear, c = p * (1 - p) / s^2 - 1. – Jonathan Chang Nov 9 at 1:21
I'm getting negative values for c in a simple test. I define the function (in Scala) as def c(p : Double, s : Double) = p * (1-p) / (s*s)-1. But, c(0.001, 0.1) = -0.9001 – sanity Nov 9 at 3:47
Also, def j1(h : Int, n : Int, p : Double, v : Double) = (h + p * p * (1 - p) / v - p) / (n + p * (1 - p) / v - 1) - and j1(5, 10, 0.1, 0.2) = 0.5232804232804233 - why would this be above 0.5? – sanity Nov 9 at 3:54
show 5 more comments
vote up 3 vote down

You don't have nearly enough info in this question.

How many coins are in the box? If it's two, then in some scenarios (for example one coin is always heads, the other always tails) knowing p and s would be useful. If it's more than a few, and especially if only some of the coins are only slightly weighted then it is not useful.

What is a small n? 2? 5? 10? 100? What is the probability of a weighted coin coming up heads/tail? 100/0, 60/40, 50.00001/49.99999? How is the weighting distributed? Is every coin one of 2 possible weightings? Do they follow a bell curve? etc.

It boils down to this: the differences between a weighted/unweighted coin, the distribution of weighted coins, and the number coins in your box will all decide what n has to be for you to solve this with a high confidence.

The name for what you're trying to do is a Bernoulli trial. Knowing the name should be helpful in finding better resources.


Response to comment:

If you have differences in p that small, you are going to have to do a lot of trials and there's no getting around it.

Assuming a uniform distribution of bias, p will still be 0.5 and all standard deviation will tell you is that at least some of the coins have a minor bias.

How many tosses, again, will be determined under these circumstances by the weighting of the coins. Even with 500 tosses, you won't get a strong confidence (about 2/3) detecting a .51/.49 split.

link|flag
As I said, "(If other summary properties of the probabilities of other coins aside from their mean and stddev would be useful, I can probably get them too.)" - so if it would be useful to know this, it is available. Typical values for n could range from 5-500. Typical probabilities will be close to 0 - perhaps 0.01 or even 0.001. One can assume they follow a bell curve. – sanity Nov 8 at 18:39
Response to response to comment: I understand that you're never going to get an accurate probability with a small number of trials - I'm just trying to improve upon the accuracy of h/n using the additional information I do have. – sanity Nov 8 at 20:23
AFAIK, given all the info in the question and comments it's not possible. – patros Nov 8 at 20:42
vote up 2 vote down

Unfortunately you can't do machine learning without knowing some basic math---it's like asking somebody for help in programming but not wanting to know about "variables" , "subroutines" and all that if-then stuff.

The better way to do this is called a Bayesian integration, but there is a simpler approximation called "maximum a postieri" (MAP). It's pretty much like the usual thinking except you can put in the prior distribution.

Fancy words, but you may ask, well where did the h/(h+t) formula come from? Of course it's obvious, but it turns out that it is answer that you get when you have "no prior". And the method below is the next level of sophistication up when you add a prior. Going to Bayesian integration would be the next one but that's harder and perhaps unnecessary.

As I understand it the problem is two fold: first you draw a coin from the bag of coins. This coin has a "headsiness" called theta, so that it gives a head theta fraction of the flips. But the theta for this coin comes from the master distribution which I guess I assume is Gaussian with mean P and standard deviation S.

What you do next is to write down the total unnormalized probability (called likelihood) of seeing the whole shebang, all the data: (h heads, t tails)

L = (theta)^h * (1-theta)^t * Gaussian(theta; P, S).

Gaussian(theta; P, S) = exp( -(theta-P)^2/(2*S^2) ) / sqrt(2*Pi*S^2)

This is the meaning of "first draw 1 value of theta from the Gaussian" and then draw h heads and t tails from a coin using that theta.

The MAP principle says, if you don't know theta, find the value which maximizes L given the data that you do know. You do that with calculus. The trick to make it easy is that you take logarithms first. Define LL = log(L). Wherever L is maximized, then LL will be too.

so LL = h*log(theta) + t*log(1-theta) + -(theta-P)^2 / (2*S^2)) - 1/2 * log(2*pi*S^2)

By calculus to look for extrema you find the value of theta such that dLL/dtheta = 0. Since the last term with the log has no theta in it you can ignore it.

dLL/dtheta = 0 = (h/theta) + (P-theta)/S^2 - (t/(1-theta)) = 0.

If you can solve this equation for theta you will get an answer, the MAP estimate for theta given the number of heads h and the number of tails t.

If you want a fast approximation, try doing one step of Newton's method, where you start with your proposed theta at the obvious (called maximum likelihood) estimate of theta = h/(h+t).

And where does that 'obvious' estimate come from? If you do the stuff above but don't put in the Gaussian prior: h/theta - t/(1-theta) = 0 you'll come up with theta = h/(h+t).

If your prior probabilities are really small, as is often the case, instead of near 0.5, then a Gaussian prior on theta is probably inappropriate, as it predicts some weight with negative probabilities, clearly wrong. More appropriate is a Gaussian prior on log theta ('lognormal distribution'). Plug it in the same way and work through the calculus.

link|flag
"Unfortunately you can't do machine learning without knowing some basic math" - to be fair, I never said I didn't know basic math - I said that math was not one of my strengths. – sanity Nov 10 at 15:36
vote up 1 vote down

In general, what you are looking for is Maximum Likelihood Estimation. Wolfram Demonstration Project has an illustration of estimating the probability of a coin landing head, given a sample of tosses.

link|flag
that's a good background, and useful for confidence intervals, but it doesn't help the original poster unless you add in a prior to the analysis. – Matt Kennel Nov 8 at 20:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.