Let K$_ n$ denote the complete graph on n vertices. To each edge in K$_n$ independently assign a weight drawn from the uniform distribution on [0,1]$\,$. Finally, define MST(n) to be the expected value of the minimum spanning tree of K$_ n$ under these conditions. For example, one immediately sees that MST(2) = 1/2 and slightly less immediately that MST(3) = 3/4 . A remarkable theorem due to Frieze states that MST(n) approaches the limiting value $\zeta(3)$ = 1.202... $\,$ as n approaches infinity.
Questions:$\,$ 1) Are there any heuristic arguments that make it plausible a priori that MST(n) will remain bounded?$\;$ 2) If one only wishes to show that MST(n) = O(1)$\,$, is there a simple proof for just that much?
Thanks
Bounded: A tree on $n$ vertices has $n-1$ edges. (Each node except the root has exactly one edge connecting it to a subtree containing the root.) Consequently, $\mathrm{MST}(n) < (n-1) \max([0,1]) = n-1$.
Still thinking if there's a short $O(1)$ argument.