Calculating the Expected Value for a Gambling Game (Randomly Roll 1-100, Basic Expectation Problem)

55 Views Asked by At

I have a slightly interesting gambling game in mind. You roll from $1-100$ and bet $x$ gold. Here are the rules:

  1. Roll $1-58:$ you lose an additional $x$ gold.
  2. Roll $59-98:$ you win an additional $x$ gold.
  3. Roll $99-100$: you win an additional $2x$ gold.

$E(x)$ = $(.58)(-x)+(.40)(x)+(.02)(2x)$ = $-0.14x$

EDIT: After an arithmetic correction, you expect to lose fourteen percent of the gambled amount, which seems more reasonable. If anyone can verify that it's correct, I'd appreciate it. An alternate solution I thought of had factors of $2$ and $3$ involved in E(x), but I feel more confident with this one.