App that counts probabilities in c++

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
5 replies · 2K views
Hepic
Messages
118
Reaction score
0
Hey,I am making an app that counts probabilities in c++(win32){for those who knows}.
I have found three formulas of equation,but I need some help for one.

For example we have a die,and we hit it 6 times.
Can we count with an formula,the probabilities to have the number "5",three times exactly?(no less,no more)

Thanks!
 
Physics news on Phys.org
Use the binomial theorem.
k out of n with probability p of success on one roll (q=1-p), is pkq(n-k)n!/{k!(n-k)!}.
Your example: n = 6, k = 3, p = 1/6.
 
Can you explain more because I hear about that first time?

Or you could send me a tutorial??
 
Yea,I found an interesting site called "Math is fun",and I undestood it,but how I can count probabilities with that?
 
Hepic said:
Yea,I found an interesting site called "Math is fun",and I undestood it,but how I can count probabilities with that?

For the example in your original post:

You cast the die six times, so there are ##6^6## equally likely sequences of results. Because they are equally likely, the probability of getting any given sequence is one in ##6^6##. How many of these sequences include exactly three fives?