class MoreMath::Sequence

def common_variance(other)

and +other+.
Returns an estimation of the common variance of the elements of this
def common_variance(other)
  (size - 1) * sample_variance + (other.size - 1) *
    other.sample_variance / (size + other.size - 2)
end