For a simple connected graph
with vertex set
and edge set
,
each edge
disappears with probability
independently. Give
an algorithm to compute a spanning tree of the original graph
such that
all its edges survive with maximum probability. Describe its validity and
computational complexity.
We shall consider the simple connected graph
as a weighted graph where
all the edges
have a
weight. We want to compute a spanning tree,
i.e. a collection of edges connecting all the vertices. This tree will have
the property of lowering the sum of the disparition probabilities
so
that the edges will survive with the maximum probability. The problem is
then reduced to the calculation of a minimum spanning tree.
See [SED00] for a detailed answer.