def variance(X):
    Y = [ ( c[0]**2 , c[1] ) for c in X ]
    return esperance(Y) - esperance(X)**2
