Lets say I have a set of numbers distributed as {5, 5, 5, 5} which has a mean value 5 and variance of 0. Now I can redistribute the data in different ways like for instance
{4, 3, 5, 8}; mean = 5, variance = 3.5
{4, 4, 4, 8}; mean = 5, variance = 3
{3, 3, 5, 9}; mean = 5, variance = 6
{6, 6, 6, 2}; mean = 5, variance = 3
Now I would like to choose the one which is better balanced/distributed comparing with the original distribution of {5, 5, 5, 5}. My question is what statistical test I can do to choose the most favourable redistribution from this example?