Alice and Bob are playing a game of rock, paper, scissors. They follow the scoring system:
After 5 rounds, Alice has a score of 4. Did Alice obtain more points than Bob??
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Nice, this was my solution, too. Every bit as rigorous as the other solution, but intuitive and simple.
With respect to Alice's score, let x denote the number of wins, y the number of ties and z the number of losses. If Alice's score is 2 x + y + 0 z = 2 x + y , then Bob's score is 2 z + y + 0 x = 2 z + y , which indicates that in a round:
The given situation can be presented as the following system of equations
2 x + y 2 z + y x + y + z = 4 = 5 (Alice’s score) (Bob’s score) (Alice’s summary after five rounds)
where Bob's score value is not given.
For this problem, suppose that Alice earns points strictly more than Bob. Then, (Alice’s score) 2 x + y > (Bob’s score) > 2 z + y Since x + y + z = 5 , 2 x + y 2 x + y 2 x + y + ( 2 x + y ) 2 ( 2 x + y ) 2 x + y > 2 ( 5 − x − y ) + y > 1 0 − 2 x − y > 1 0 > 1 0 > 5 However, by the given, 2 x + y = 4 , which contradicts the inequality above. Thus, it is impossible for Alice to earn more points than Bob.
Here are all possibilities from the givens:
So Bob ends up earning more points than Alice.
Problem Loading...
Note Loading...
Set Loading...
For each round, Alice and Bob split two points, so after five rounds, Alice and Bob have 10 points between them. If Alice has 4 points, then Bob must have 6 points, so Alice did not earn more than Bob.