Probability calculation in R [closed]

0

I'm doing a job in R and they ask me the following ...

On a craps table at a casino, a pair of dice that are not played are played 180 times per hour.

In 24 hours the dice are thrown 4320.

The parameters of the distribution they give me are (4320, 1/6)

Calculate with R's help the probability that there are between 700 and 750 sums of 7 in 24 hours.

How can you calculate this probability in R?

On paper I can do it but in R how is it done?

Greetings and thank you very much.

    
asked by Roman345 19.11.2016 в 22:40
source

1 answer

1

Hello!

I suggest the following steps:

1) What distribution are we talking about? Here, to calculate one of the parameters, you will probably have to take accounts.

2) Once you know the distribution, the function family r norm, d norm, p norm,. . . (not necessarily with the normal distribution) will help you calculate the value they ask for.

The important thing is that you define well the first step to be able to help you with the second one. I await your response.

Greetings,

    
answered by 29.11.2016 в 12:25