This is quite a frequently asked question here on Stack Exchange, yet I have went through the past posts and still have some doubt in my mind. As I don't have the reputation to comment under the post (and those post are not active anymore), I decided to create a new question.
From the post - Expected number of tosses to get 3 consecutive heads, what's wrong with my solution?
It is suggested that the correct equations are as follow:
= Expected number of tosses to reach $i$ consecutive heads.
1 = 1 + 1/2 ∗ 1
2 = 1 + 1 + 1/2 ∗ 2
3 = 2 + 1 + 1/2 ∗ 3
The result will be X1 = 2, X2 = 6, X3 = 14.
While all the explanation seems making sense to me, I am confused of one thing. When there is 50% chance of "resetting" because of getting a tail, we multiply the expected value by 50%, but there isn't such adjustment for the 50% of getting a head? Or am I having some flaw in my thinking process.
Lets say X2, shouldn't it be 50% being X1 + 1, and 50% being X2 (the reset process).
Hence the equation should be (X1 + 1)/2 + X2 / 2?
Edit: sorry for the confusing terms. I meant to use $X_i$ to represent the expected value for having $i$ consecutive heads. i.e. $X_3$ = expected number of toss to get 3 consecutive head (which is the require answer for this question)
And my thought process goes like this: $X_3$ will be $X_2 + 1$ if it lands a head(50%) and $X_3$ will be $X_3$ (reset) if it lands tail(50%). So I thought the equation will be $X_3 = (X_2 + 1)/2 + X_3 / 2$, which is wrong but I am not sure which part goes wrong here.