Normally a variance is calculated towards the mean ($\bar X_n$), so it looks like this:
$$ o^2_n = \frac{\sum_{i = 1} ^ n (X_i - \bar X_n)^2}{n} $$
What if we replace that mean by zero (even though the mean is not zero). What do you call this?
$$ o^2_n = \frac{\sum_{i = 1} ^ n (X_i)^2}{n} $$
Context: This formula is very useful for load balancing tasks as fairly as possible across workers/machines. The resulting number is higher if it is less fair. Unlike normal variance (or std dev), fairness focuses on the heaviest loaded worker/machine first.
And what do you call the square root of that formula?