Skip to content

Commit f5cb37e

Browse files
RamonAraujofifthist
authored andcommitted
add solution to problem 5.43
1 parent 13b3aa3 commit f5cb37e

2 files changed

Lines changed: 55 additions & 0 deletions

File tree

src/chapters/5/sections/exponential/index.tex

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ \subsection{problem 37}
44
\input{problems/37}
55
\subsection{problem 39}
66
\input{problems/39}
7+
\subsection{problem 43}
8+
\input{problems/43}
79
\subsection{problem 45}
810
\input{problems/45}
911
\subsection{problem 47}
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
a. The first success occurs at times $k \Delta t$, where $k \ge 0$ is the number of failures before the first success. Therefore, $T = G \Delta t$. \\
2+
3+
b. Since the trials are independent and with the same probability of success $\lambda \Delta t$, the number of failures before the first success is $G \sim \mathrm{Geom}(\lambda \Delta t)$ by the story of the geometric.
4+
The PMF of $G$ is given by
5+
6+
$$
7+
P(G=k) = (1 - \lambda \Delta t)^k \lambda \Delta t \text{ , for } k=0,1,\dots
8+
$$
9+
10+
It is convenient to calculate $P(G > k)$
11+
12+
$$
13+
P(G > k) = \sum_{i=k+1}^\infty P(G=i) = \lambda \Delta t \sum_{i=k+1}^\infty (1 - \lambda \Delta t)^i = (1 - \lambda \Delta t)^{k+1}
14+
$$
15+
16+
The CDF of $T$ is calculated as
17+
18+
\begin{flalign*}
19+
P(T \le t)
20+
& = 1 - P(T > t) = 1 - P(G > t / \Delta t) \\
21+
& = 1 - (1 - \lambda \Delta t)^{\frac{t}{\Delta t} + 1}
22+
\end{flalign*}
23+
24+
25+
c. Taking the limit of the CDF of $T$ for $\Delta t \to 0$
26+
27+
$$
28+
\lim_{\Delta t \to 0} P(T \le t)
29+
=
30+
\lim_{\Delta t \to 0} \left[ 1 - (1 - \lambda \Delta t)^{\frac{t}{\Delta t} + 1} \right]
31+
=
32+
1 - \lim_{\Delta t \to 0} (1 - \lambda \Delta t)^{\frac{t}{\Delta t} + 1}
33+
$$
34+
35+
If we do the substitution $n = t/\Delta t$, we obtain $n \to \infty$ for $\Delta t \to 0$
36+
37+
$$
38+
\lim_{\Delta t \to 0} P(T \le t)
39+
=
40+
1 - \lim_{n \to \infty} \left( 1 - \frac{\lambda t}{n} \right)^{n+1}
41+
=
42+
1 - \lim_{n \to \infty} \left( 1 - \frac{\lambda t}{n} \right)^n \times \lim_{n \to \infty} \left( 1 - \frac{\lambda t}{n} \right)
43+
$$
44+
45+
The first limit is the compount interest limit and is equal to $e^{-\lambda t}$.
46+
The second limit is equal to 1. Thus,
47+
48+
$$
49+
\lim_{\Delta t \to 0} P(T \le t) = 1 - e^{-\lambda t}
50+
$$
51+
52+
\noindent which is the CDF of the $\mathrm{Expo}(\lambda)$ distribution.
53+
Therefore, $T$ converges to $\mathrm{Expo}(\lambda)$ as trials are performed faster and with smaller success probabilities.

0 commit comments

Comments
 (0)