I have 3 coins, and I flip them all together and count the number of heads I get. I repeat this 100 times and write down how many times I get 0 heads, ..., 3 heads.
I want to prove that based on my results the coins are biased. For that I want to use the Chi-Square Test, but I need to write my null hypothesis and I don't know how.
From what I understand, the null hypothesis would be that the coins are unbiased. And then I could write something like this:
- Every time I toss the coins I have $2^3$ possible outcomes
- So the probability of getting $x$ heads on a toss is $P'(x) = \begin{pmatrix} 3 \\ x \end{pmatrix}/2^3$
- Then if I do this 100 times, the probability of getting x heads, n times could be $P(n,x) = \begin{pmatrix} 100 \\ n \end{pmatrix}P'(x)^nP'(x)^{100-n}$
But I'm not sure if $P(n,x)$ is correct, is it?
If the formula was correct then I could use it to calculate the expected value and perform the Chi-Test.