Dice & German Tank Problem¶
Manual Way¶
def likelihood_dice(data, hypo):
if data > hypo:
return 0
else:
return 1 /hypo
# Solution
# def likelihood_dice(data, hypo):
# """Likelihood function for the dice problem.
# data: outcome of the die roll
# hypo: number of sides
# returns: float probability
# """
# if data > hypo:
# return 0
# else:
# return 1 / hypo
probs | |
---|---|
4 | 0.000000 |
6 | 0.444444 |
8 | 0.333333 |
12 | 0.222222 |