ComenzarEmpieza gratis

Cards and the sum rule

A standard French-suited deck of playing cards contains 52 cards; 13 each of hearts (♥), spades (♠), diamonds (♦), and clubs (♣). Assuming that you have a well-shuffled deck in front of you, the probability of drawing any given card is 1/52 ≈ 1.92%.

Este ejercicio forma parte del curso

Fundamentals of Bayesian Data Analysis in R

Ver curso

Instrucciones del ejercicio

  • Calculate the probability of drawing any of the four aces! That is, calculate the probability of drawing 🂡 or 🂱 or 🃁 or 🃑 using the sum rule and assign it to prob_to_draw_ace.

Ejercicio interactivo práctico

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

# Calculate the probability of drawing any of the four aces
prob_to_draw_ace <- ___
Editar y ejecutar código