Created
August 24, 2022 16:55
-
-
Save bgoodri/511be65cdf443657749ebb39c899fb4b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sympy import * | |
from sympy.stats import * | |
X = Die('X', 6) # RV | |
x = sample(X) # realization of RV | |
x # do not conflate x and X | |
Omega = list(range(11)) # 0, 1, ..., 10 but EXCLUDES 11 | |
def PMF(x, n = 10): | |
assert isinstance(x, int) | |
assert isinstance(n, int) | |
assert n >= 0 & n <= 10 | |
if (x > n | x < 0): | |
return 0 | |
return log(1 + 1 / (n + 1 - x), n + 2).evalf() | |
p = list(map(PMF, Omega)) | |
import random | |
x_1 = random.choices(Omega, weights = p)[0] | |
x_1 = symbols("x_1", integer = True) | |
x_2 = symbols("x_2", integer = True) | |
joint_Pr = zeros(11, 11) | |
for x_1 in Omega: | |
for x_2 in range(0, 11 - x_1): | |
joint_Pr[x_1, x_2] = PMF(x_1) * PMF(x_2, n = 10 - x_1) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment