Completion time of a process on a tree - MathOverflow most recent 30 from http://mathoverflow.net2013-05-26T06:37:03Zhttp://mathoverflow.net/feeds/question/119744http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://mathoverflow.net/questions/119744/completion-time-of-a-process-on-a-treeCompletion time of a process on a treePradipta2013-01-24T11:02:16Z2013-01-26T23:21:55Z
<p>Given is a constant degree rooted tree of depth $D$. It is also known that the total number of nodes in the tree is at most $D^2$. There is a probabilistic process with discrete time steps on the nodes that work as follows:</p>
<ol>
<li>A node becomes <b>eligible</b> to participate in the process when all of its children have <b>succeded</b>.</li>
<li>Once eligible, the node <b>succeeds</b> in each time step with iid probably $\frac12$. Once successful, it is "done", i.e. stays succeeded.</li>
</ol>
<p>I would like a bound on how many steps it requires for all nodes to succeed with probability $1 - \delta$ where $\delta$ is potentially much smaller than $\frac1{D^2}$. </p>
<p>I can see a bound of $O((D + \log{\frac{1}{\delta}})\log D)$ as outlined below. I was wondering if the $\log D$ is necessary?</p>
<p>Outline of argument for $O((D + \log{\frac{1}{\delta}})\log D)$: Consider to be the number of steps required for the depth of tree of unsuccessful nodes to reduce by 1. Since there are at most $D^2$ leaves at any given time, the expected time for this reduction is $\log D$ steps. The situations for different depths are essentially independent (can be written as martingale), and then a concentration inequality would give us the required bound.</p>
http://mathoverflow.net/questions/119744/completion-time-of-a-process-on-a-tree/119790#119790Answer by Kevin P. Costello for Completion time of a process on a treeKevin P. Costello2013-01-24T22:33:18Z2013-01-24T22:33:18Z<p>It seems the $\log D$ is unnecessary. We can model the process as follows:</p>
<p>Let $v_1, \dots, v_j$ be the initial leaves of the tree, and let $p_1, \dots, p_j$ be the paths eminating from the leaves to the root vertex. At each step we perform the following:</p>
<p>-Delete the initial vertex of each $p_i$ independently with probability $1/2$.<br>
-If any $p_j$ is a proper subset of some other $p_k$, delete it. If there are two or more identical paths, delete all but one. </p>
<p>Note that by construction after each step the leading vertex of $p_j$ is eligible (if it were not eligible, $p_j$ would be a proper subset of the path containing its eligible child) and the leading vertices are distinct. Furthermore, every unsuccessful vertex is in at least one path until it becomes successful. So the tree becoming successful is equivalent to all the paths either being deleted or becoming empty. </p>
<p>Now consider an alternative process where we do not perform the second step at all, always just reducing each list by $1$ with probability $1/2$ at each step (now a vertex may be deleted from one list but stay on other lists). This alternative process always takes at least as long to finish as the original process. But now it's easy to analyze. Each path has length at most $D$ initially, so the probability it lasts beyond $2D+c\sqrt{D}$ steps decays exponentially in $c^2$. There's at most $D^2$ paths initially, so if we take $c$ large enough to make this probability smaller than $\frac{\delta}{D^2}$, we'll have the desired probability. </p>
<p>I believe this should get you something like $2D+O(D^{1/2} \log(D/\delta))$, which is pretty much the best you can hope for (consider a tree consisting of $D$ disjoint paths of length $D$ from the root). </p>