2018-09-30 23:01:58 +01:00
---
id: 5900f5221000cf542c510033
title: 'Problem 436: Unfair wager'
2020-11-27 19:02:05 +01:00
challengeType: 5
2019-08-05 09:17:33 -07:00
forumTopicId: 302107
2021-01-13 03:31:00 +01:00
dashedName: problem-436-unfair-wager
2018-09-30 23:01:58 +01:00
---
2020-11-27 19:02:05 +01:00
# --description--
2018-09-30 23:01:58 +01:00
Julie proposes the following wager to her sister Louise.
2020-11-27 19:02:05 +01:00
2018-09-30 23:01:58 +01:00
She suggests they play a game of chance to determine who will wash the dishes.
2020-11-27 19:02:05 +01:00
2018-09-30 23:01:58 +01:00
For this game, they shall use a generator of independent random numbers uniformly distributed between 0 and 1.
2020-11-27 19:02:05 +01:00
2021-07-29 20:14:09 +02:00
The game starts with $S = 0$.
2020-11-27 19:02:05 +01:00
2021-07-29 20:14:09 +02:00
The first player, Louise, adds to $S$ different random numbers from the generator until $S > 1$ and records her last random number '$x$'.
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
The second player, Julie, continues adding to $S$ different random numbers from the generator until $S > 2$ and records her last random number '$y$'.
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
The player with the highest number wins and the loser washes the dishes, i.e. if $y > x$ the second player wins.
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
For example, if the first player draws 0.62 and 0.44, the first player turn ends since $0.62 + 0.44 > 1$ and $x = 0.44$. If the second players draws 0.1, 0.27 and 0.91, the second player turn ends since $0.62 + 0.44 + 0.1 + 0.27 + 0.91 > 2$ and $y = 0.91$. Since $y > x$, the second player wins.
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
Louise thinks about it for a second, and objects: "That's not fair".
What is the probability that the second player wins? Give your answer rounded to 10 places behind the decimal point in the form 0.abcdefghij
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
# --hints--
2018-09-30 23:01:58 +01:00
2021-07-29 20:14:09 +02:00
`unfairWager()` should return `0.5276662759` .
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
```js
2021-07-29 20:14:09 +02:00
assert.strictEqual(unfairWager(), 0.5276662759);
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --seed--
2018-09-30 23:01:58 +01:00
2020-11-27 19:02:05 +01:00
## --seed-contents--
2018-09-30 23:01:58 +01:00
```js
2021-07-29 20:14:09 +02:00
function unfairWager() {
2020-09-15 09:57:40 -07:00
2018-09-30 23:01:58 +01:00
return true;
}
2021-07-29 20:14:09 +02:00
unfairWager();
2018-09-30 23:01:58 +01:00
```
2020-11-27 19:02:05 +01:00
# --solutions--
2018-09-30 23:01:58 +01:00
```js
// solution required
```