Given an upper bound for $E \left[ \exp \left(\frac{nt}{\sum_{i=1}^n k_i}\right)\right]$ where
- $k_i$'s are random variables which denote the number of independent Bernoulli trials before we encounter the first failure where probability of failure is $p$
- $n$ is the number of such Bernoulli trial experiments performed
- $E[X]$ denotes the expected value of a random variable $X$
- $e$ = $exp$ is the base of the natural logarithm
- $t > 0$ is some arbitrary parameter
What I have done so far:
My original task was to derive an upper bound for
$$Pr \left( \frac{n}{ \sum_{i=1}^n k_i} - p \ge \delta \right)$$
$$ = Pr \left( e^{t \frac{n}{\sum_{i=1}^n k_i} - p } \ge e^{t\delta} \right)$$
Here $t > 0$. I applied Markov's Inequality to get
$$Pr \left( e^{t \frac{n}{\sum_{i=1}^n k_i} - p } \ge e^{t\delta} \right)$$
$$ \le \frac{E\left[e^{t \frac{n}{\sum_{i=1}^n k_i}}\right]}{e^{t(\delta + p)}}$$
Thus to continue from here, I have to compute $E \left[ exp \left(\frac{nt}{\sum_{i=1}^n k_i}\right)\right]$ I attempted the following steps:
$$\frac{n}{\sum_{i=1}^{n} k_i} \le \sum_{i=1}^{n}\frac{1}{k_i}$$ $$\to E[exp(\frac{nt}{\sum_{i=1}^n k_i})] \le E[e^{t\sum_{i=1}^{n}\frac{1}{k_i}}]$$ $$ = \prod_{i=1}^{n} E[e^{\frac{t}{k_i}}]$$
Now, I focussed on computing $E[e^{\frac{t}{k_i}}]$ which can be written as $$p \sum_{i=0}^{\infty}(1-p)^ie^{\frac{t}{i+1}}$$
And this is where I am stuck. I tried to see if I could do something with the Taylor Series' Expansion of $e^x$ do get some G.P. of the overall some but without luck.