Random Variable - Mean and Variance

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 2K views
EEristavi
Messages
108
Reaction score
5
Problem:

We play roulette in a casino. We watch 100 rounds that result in a number between 1 and 36. and count the number of rounds for which the result is odd.

assuming that the roulette is fair, calculate the mean and deviation

Solution:

I understand that the probability - Pr = 0.5. and mean - E[x] = 50. However, I can't figure out how to write it appropriately (use formula E[x] = ∑ x * Pr)

As I Understand, I must choose random variable x = 1, but don't quite understand the "true" meaning of it and why I can't choose other variable.

Moreover, I see from solutions that σs=√(100 * 0.5 * 0.5) = 5. However, I can't understand how we get this
 
Physics news on Phys.org
EEristavi said:
I understand that the probability - Pr = 0.5.

The number 0.5 is the probability of the event that a single round will be odd. The question asks about different events. It asks about "the number of rounds for which the result is odd" in the 100 rounds. Letting X be that random variable, the possible outcomes for X are 0,1,2,...100.

I can't figure out how to write it appropriately (use formula E[x] = ∑ x * Pr)

Write it as:
(0) (probability 0 out of 100 rounds are odd) + (1)(probability 1 out of 100 rounds are odd) ... + (100)(probabiiity 100 out of 100 rounds are odd)

As @andrewkirk suggests, look up "binomial random variable" if you are unfamiliar with the expressions for these probabilities.
 
  • Like
Likes   Reactions: EEristavi
Thank you both for your answers