diff --git a/estimator/nd.py b/estimator/nd.py index 77e4012..659cdfa 100644 --- a/estimator/nd.py +++ b/estimator/nd.py @@ -424,7 +424,7 @@ def __init__(self, b, n=None): super().__init__( n=n, mean=RR(0), - stddev=RR(sqrt(((2**(b+1) + 1)**2 - 1)/12)), + stddev=RR(sqrt((2**(2*b+1) + 1)/6)), bounds=(-2**b, 2**b), _density=(1 - 1 / 2**(b+1)), )