ComenzarEmpieza gratis

Calculating the expected value

What is the expected value of a binomial distribution where 25 coins are flipped, each having a 30% chance of heads?

Este ejercicio forma parte del curso

Foundations of Probability in R

Ver curso

Instrucciones del ejercicio

  • Calculate this using the exact formula you learned in the lecture: the expected value of the binomial is size * p. Print this result to the screen.
  • Confirm with a simulation of 10,000 draws from the binomial.

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Calculate the expected value using the exact formula


# Confirm with a simulation using rbinom
Editar y ejecutar código