Re: In a family of four people, none of the people have the same
[#permalink]
19 Jun 2022, 11:03
I used the solution that was already provided here, but I added some changes.
We have two sets.
Set A --- 2, 3, 5, 11
Set B --- 41, 43, 47
We need to choose two numbers from each set.
Also the sum of these four numbers should be even. If we take four numbers and sum them, we have three odd numbers, and therefore, the fourth number must be also odd to make the case be even.
odd+odd+odd+[must be odd to make the sum be even].
So we can remove 2 from set A.
Set A --- 3, 5, 11
Set B --- 41, 43, 47
Now we want to find the smallest and the largest possible average:
Smallest: (3+5+41+43)\4 = 23
Largest: (5+11+43+47)\4= 26.5
So we need to find all prime numbers between 23 and 26.5.
23 is the the prime number, and we know the is was created by 3,5,41,43, so these four numbers are the answer.