Each time you run the Karger algorithm, it will give you a (semi-random) cut. The likelihood that this cut is a minimal cut is P = 1 / (n^2/2 - n/2)much better than just choosing a cut randomly.
If you run the algorithm once, your probability of getting a minimal reduction will be P, but your probability of not getting it 1 - P. If you run the algorithm twice, then your chances of getting a minimum cut will be (1 - P) * (1 - P), since you will have to skip the minimum cut for the first time and the second time.
This is a little better. Executing the algorithm twice gives us a higher probability of finding the minimum cut.
T , (1 - P)^T, , 1 - (1 - P)^T.
, . (1 1 000 000?) T. .
T = C * (n choose 2) * ln(n), , (1 / n)^C , , C 1. , , node . , .
C, , . , , C = 1 (n choose 2) * ln(n) .
( wikipedia. )