class MoreMath::Sequence

def arithmetic_mean

Returns the arithmetic mean of the elements.
def arithmetic_mean
  sum / size
end