from Goulib.notebook import *
from Goulib.stats import *
dice=Discrete(range(1,6+1))
dice
Y=Discrete({1:0.2, -1:0.8})
Y
X=Discrete({-2:0.15,-1:.2,0:.3,1:.2,2:.15})
X**2+Y
n1=Normal()
print(n1)
n1
n2=Normal([],4,4)
n2
n1+n2
plot.plot([n1,n2,n1+n2])