CommencerCommencer gratuitement

Simulating adding two binomial variables

In the last multiple choice exercise, you found the expected value of the sum of two binomials. In this problem you'll use a simulation to confirm your answer.

Cet exercice fait partie du cours

Foundations of Probability in R

Afficher le cours

Instructions

  • Simulate 100,000 draws from X, a binomial with size 20 and p = .3, and Y, with size 40 and p = .1.
  • Use this simulation to estimate the expected value of X + Y.

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

# Simulate 100,000 draws of X (size 20, p = .3) and Y (size 40, p = .1)
X <-
Y <-

# Estimate the expected value of X + Y
Modifier et exécuter le code