Notes on 2d-2d Die Throws
Table of Contents
1 2d-2d probabilities
Dumb Python script:
"""
Print the value of every possible 2D - 2D throw in Diaspora Anabasis, for "analysis" via 'sort | uniq --count'.
"""
for i in range(1,7):
for j in range(1,7):
for k in range(1,7):
for m in range(1,7):
print( i + j - k - m)
In some cases (like to roll for success) we take the absolute value of 2d - 2d, and that looks like this: