Let $X_1,X_2,X_3,\cdots$ variables i.i.d., such that $P(X_1=2)=1/2=P(X_1=-1)$ Let $S_n=X_1+\cdot+X_n$ consider stopping time $\tau=\{n\geq 1:S_n=10, \ or\ S_n=-10\}$. If $E(\tau )=8$. Compute $P(S_\tau = 10)$.
How can I approach this problem, as start?
Next let $q_i$ represent the probability that you win 10 dollars before losing 10 dollars having won $i$ dollars ($-10 < i < 10$).
Then, $q_{-10} = 0$, $q_{10}=1$, $q_i = \frac{q_{i-1}}{2} + \frac{q_{i+2}}{2}$.
Final answer you need is $P(S_n = 10) = q_0$
– Snowball May 08 '21 at 17:50In the first one, they use expected winning after $t$ rounds where $t\to\infty$ and it is zero (in original problem winning is 1, not 2). Since eventually game should end, final expected value is $l_1q - l_2(1-q)=0$. In this problem, maybe we can say expected stop time is 8 and then after 8 rounds, expected winning is 4, so $10q - 10(1-q)=4$, so $q = 0.7$
– Snowball May 08 '21 at 18:37