Okay, I’ll take the easiest one. (I’m Swedish so I’m using “,” as “comma”. I believe many of you use “.” instead.)
X = the total number of heads from the 100 flips
X~bin(100;0,5)
P(X=50) = 100C500,5^500,5^50 = 0,07959
The probability of getting exactly 50 heads from 100 flips is 8%.
I’ll try to explain so that you can do this by yourself.
X is binomial distributed because there are n number of “attempts” where either the event A (heads in this case) or Ac (A complement, or not heads) can happen. The event A has the same probability in all attempts (here 0,5) and the result in an attempt does not change the probability of any other attempt, they are independant (a heads on your first flip for example, does not affect the probability of heads in the next one).
So,
n=100
A=heads
P(A)=0,5
independant
X~bin(n,p) <— X is binomial distributed and we note the n and p because we’ll use them in our formula later.
Now we can calculate the probability for any number of heads, from 0 to 100. The general formula is P(X=x)=nCxp^x(1-p)^n-x
The nCx part is a mathematical function you can probably find on your calculator unless it’s a really cheap one. If you don’t, you’ll have to put in the numbers on your own. n! / (x! * (n-x)!) it looks more difficult than it is because of the way you have to put it in this format.
n! is of course the faculty of n, or n*(n-1)(n-2)…1 or with an example, 4! = 4321. I’m pretty sure there’s a n! on every calculator. There’s one on the windows calculator for example (advanced mode). So you’d type in: 100 [n!] [/] [(] 50 [n!] [li] 50 [n!] [)] [=] where calculator functions are in [brackets]. You end up with a rather large number but then you continue with the original formula multiplying with 0,5^50 twice. If you do it right you should be left with the same number I got before (0,07959).[/li]Then you ask what P(45<=X<=55) is.
If you want an exact answer, do P(X=45), P(X=46) and so on until P(X=55) and add the probabilities up. Or, if you’re content with a pretty good but not exact answer approximate with the normal distribution. I’ve written too much already, so I won’t do that one now. (read: I did it but got numbers that were obviously not correct and am too tired to see what I did wrong.)
Hopefully the rest is relatively free of errors and not too incomprehensive.