-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathexercise07.02.tex
More file actions
29 lines (29 loc) · 768 Bytes
/
Copy pathexercise07.02.tex
File metadata and controls
29 lines (29 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
\paragraph{Exercise 7.2} We can observe that
\[
P_{0,0}^{t+1} = P_{0,0}^t \cdot p + P_{0,1}^t \cdot (1 - p)
\quad and \quad
P_{0,1}^t = 1 - P_{0,0}^t.
\]
From this, we can derive the recursion
\[
P_{0,0}^{t} = (2p-1)P_{0,0}^{t-1} + (1-p)
\]
for $t \in \mathbb{N}^+$ and $P_{0,0}^0 = 1$. The solution for this recursion is
\begin{align*}
P_{0,0}^t
&= (2p-1)^{t} \cdot P_{0,0}^{t-t} + (1-p) \sum_{j=0}^{t-1}(2p-1)^j \\
&= (2p-1)^{t} + (1-p) \sum_{j=0}^{t-1}(2p-1)^j.
\end{align*}
In the case $p = 1$, one has
\[
P_{0,0}^t
= (2p-1)^{t} + (1-p) \cdot t
= 1.
\]
In the case $p < 1$, one has
\[
P_{0,0}^t
= (2p-1)^{t} + (1-p) \frac{1-(2p-1)^{t}}{1-(2p-1)}
= (2p-1)^{t} + (1-p) \frac{1-(2p-1)^{t}}{2(1-p)}
= \frac{(2p-1)^{t} + 1}{2}.
\]