In a town, there are 33 families that own either 1, 2, or 3 bikes. The number of families that own 1 bike is equal to the number of families that own 3 bikes.
What is the number of the bikes in the town?
I know the answer is 66. If you test cases you will see that the number is always 66. FOr example:
15 own 1b, 15 own 3b, 3 own 2b = 66
10 own 1b, 10 own 3b, 13 own 2b = 66
My question is, how do you explain this result in a technical way, taking into consideration the mean?
Probably the easiest way to make sense of this problem is to simply imagine that every family with 3 bikes gives one of them to a family with only a single bike. This would then mean that every family owns 2 bikes, and the total would be $33*2=66$ bikes.