Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Expected Value Strategizing based on Harvard Fat Chance #34

Open
EmbraceLife opened this issue Aug 10, 2018 · 0 comments
Open

Expected Value Strategizing based on Harvard Fat Chance #34

EmbraceLife opened this issue Aug 10, 2018 · 0 comments
Labels
Basic basic statistics and probability Fat Chance Fat chance: probability from ground up

Comments

@EmbraceLife
Copy link
Owner

Expected Value Strategizing

key questions

Expectation can help decisions but with many constraints

how to compare many games for the best one using Expectation?

Video links

original course videos p49-51

my note videos p48-49

problem

What is the expected value for this experiment above?

one dice

  • total = 6
  • one 6 and no 1s = dice1(1)
  • target prob = 1/6

two dices

  • total = dice1(6) x dice2(6)
  • no 1s = dice1(5) x dice2(5) = A = 25
  • one or more 6s and no 1s = A - no 6s and no 1s = A - dice1(4) x dice2(4) = 25-16 = 9

three dices

  • total = dice1(6) x dice2(6) x dice3(6) [order matters here, collection is not required]
  • no 1s = dice1(5) x dice2(5) x dice3(5) [order matters here, collection is not required] = A = 125
  • one or more 6s and no 1s = A - no 6s and no 1s= A - dice1(4) x dice2(4) x dice3(4) = target count = 125-64 = 61
  • other = total - target count

Practice

problem

roll n dice, desired outcome = get a 5 or 6 but no 1s, what is the probability?

total = dice1(6 options) x dice2(6) x ... diceN = $6^n$

target on no 1s = dice1(5 options) x dice2(5 options) x ... diceN = $5^n$ = A

target on get a 5 or 6 and no 1s = A - no 5 nor 6 and no 1s = A - dice1(6-3) x dice(3) x ... x diceN(3) = A - $3^n$

target probability = $\frac{5^n - 3^n}{6^n}$

@EmbraceLife EmbraceLife added Basic basic statistics and probability Fat Chance Fat chance: probability from ground up labels Aug 10, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Basic basic statistics and probability Fat Chance Fat chance: probability from ground up
Projects
None yet
Development

No branches or pull requests

1 participant