I didn't get the exact thing that this question wants. Is the concept about the binomial distribution? I am not sure if I should calculate the probability or expected value. Also, this question means that after two 6 I should expect 1 or no.
A fair die is rolled sequentially. What is the probability of finding two consecutive 6s before finding a 1? In other words, think of the problem as a game that ends when you either (a) roll two consecutive 6s or (b) roll a single 1. You must account for all possible numbers of rolls, i.e., it could take one million rolls before two consecutive 6’s are rolled.
As mentioned, it's not a Binomial Problem since you can't presume two exclusive events of success/failure from the first experiment or die roll. It's helpful to consider the trivial case of losing on the first roll, how do you do form probabilities for the outcomes? Define three states:
We aim to find $P_0$, the probability of rolling two consecutive 6s before a 1 from state $S_0$, and $P_1$, the probability of the same after rolling one 6.
From state $S_0$: $$ P_0 = \frac{1}{6}P_1 + \frac{1}{6}(0) + \frac{4}{6}P_0. $$
From state $S_1$: $$ P_1 = \frac{1}{6}(1) + \frac{1}{6}(0) + \frac{4}{6}P_0. $$
Solving these gives: $$P_1 = \frac{1}{6} + \frac{4}{6}P_0. $$
From here you can substitute and solve.