Skip to content
Advertisement

Rolling of Dice probability of getting exactly two 3s in ‘k’ rolls [closed]

Trying to calculate the probability of getting two 3s in ‘k’ rolls and then bar plot. Prior to me adding the code starting with prob_trials[], it would not return any output. Then when I added the prob_trials[] code, if get the error of tuple not callable.

JavaScript

Advertisement

Answer

I would suggest a direct calculation of the probability. The experiment of rolling a dice getting

  1. ‘3’ with probability 1/6
  2. ‘not 3’ with probability 5/6

This can be looked as a Bernoulli distribution. Thus, the act of 2 successes in k experiments will be regarded as Binomial distribution. Therefore, the probability of a binomial random variable X to have 2 successes in k attempts will be computed as:

P(X=2) = (k choose 2)*(1/6)^2 * (5/6)^{k-2}

Code example for this will be:

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement