This was a question that was asked in my distributed network algorithms assignment
Say I have n nodes in a distributed network and at every node I'm tossing a coin. Let $X_i$ be the independent random variables following geometric distribution, where $1 \leq i \leq n$, that denotes the number of coin tosses before a heads appear. let the parameter $ p = 1/2$. Then show with high probability that $Max\{X_i | 1 \leq i \leq n\} = O(logn)$.
Added the picture of question for more clarity:
This is the partial answer that I submitted.
E[x] = 1/P = 2
P($x_i = k_i$) = $(1-p)^{k_i-1}p$ where $k_i$ denotes the number of trails before heads appear in $i^{th}$ node
substituting p= 1/2, we get
P($x_i = k_i$) = $(1/2)^{k_i}$ for $ 1 \leq i \leq n$
How to procced after this ?
