Occasionally when I'm bored, I'll play a game:
Pick a random positive integer $X$.
Add $+1$, $0$, $-1$ to make it divisible by $3$. $^\dagger$
Divide by $3$ to create a new $X$.
Repeat steps $2$ and $3$ until you reach $1$.
$^\dagger$ Keep track of how much you've added and subtracted. That is your "score".
Assuming a random starting number $X$ (rather than a pseudo-random one), is there an equal chance that this game results in a positive or negative score?
(I assume that this can be done with induction, hence the tag, but I'm fine with any proof)

If you write $X$ in base $3$ your game does the following: Look at the ones bit of $X$. If it is $0$ do nothing. If it is $1$, subtract $1$ to make it $0$. If it is $2$, add $1$ to make it zero and carry $1$. Then erase the $0$ in the ones place. Repeat.
This is all fair until you get to the last place. In that place you can never subtract. If it is a $2$ you add $1$. It could either have started as $2$ or have become $2$ because of a carry from below. For most ranges that $X$ could be chosen from, this will introduce a bias upwards.