What is the probabilistic method in combinatorics?
A technique for proving the existence of combinatorial objects by showing that a randomly chosen object has the desired property with positive probability; this guarantees such an object exists even if it's not explicitly constructed.
What is linearity of expectation and why is it useful in probabilistic proofs?
Linearity of expectation says the expected value of a sum of random variables equals the sum of their expectations, regardless of dependence. It lets you bound or compute average counts of features and deduce existence when the expected count of bad features is small.
How is a probabilistic existence proof typically structured?
1) Define a random object. 2) Identify a statistic (e.g., number of bad features). 3) Bound its expectation (often via linearity). 4) Conclude that a desired object exists because the good outcome has positive probability. 5) Optionally fix small issues by a simple modification.
Is the probabilistic method always non-constructive?
Not always. It often guarantees existence without an explicit example, but many results yield constructive randomized algorithms or allow derandomization to produce explicit objects.
Can you see a simple example of the method in action?
Yes. Take G(n, 1/2). Let X be the number of isolated vertices. Then E[X] = n(1/2)^(n-1) < 1 for modest n, so there exists a graph with X = 0 (no isolated vertices). This proves such a graph exists without constructing one.