I got a list of N integers (without repetition) below 50, which always sum the same (so the mean is also the same) as the following:
[1,2,3, 10,20] , mean = 7.2
I can swap two numbers, and the mean will be 7.2 again:
[1,2,3, 11,19] , mean = 7.2
There is a way to find two list of this N integers with the same variance, or is it unique for all the possible combinations of N integers below 50?