Hi, there. I'm happy to help with this.
Answer A: 1-7-1
Well, the two on the far ends, and the two at the ends of the seven are all on the aisle, no one between them and the aisle.
0, 0, _, _, _, _, _, 0, 0
Next person in on each side of that row of seven has one person between her and the aisle.
0, 0, 1, _, _, _, 1, 0, 0
Next person in on each side has two people between him and the aisle:
0, 0, 1, 2, _, 2, 1, 0, 0
Person in the center has three people between her and the aisle on either side.
0, 0, 1, 2, 3, 2, 1, 0, 0 ---> SUM = 9
(
since we would divide by nine in each case, we can just find the sum --- lowest sum will be the lowest average).
Answer B: 2-5-2
Similar logic:
1, 0, 0, 1, 2, 1, 0, 0, 1 ---> SUM = 6
Answer C: 3-3-3
2, 1, 0, 0, 1, 0, 0, 1, 2 ---> SUM = 7
Answer D: 4-1-4
3, 2, 1, 0, 0, 0, 1, 2, 3 ---> SUM 12
So, they don't all have the same average. (b) has the lowest sum, so it has the lowest average.
Does that make sense? Please let me know if you have any questions on this.
Mike