Documentation

Atlas.ProbabilisticMethodsInCombinatorics.code.Chapter5.Hajos

noncomputable def Hajos.hajosParam (n : ) :

The threshold $t = \lceil 10 \sqrt{n} \rceil$ used in Theorem 5.3.2: we show that $G(n, 1/2)$ has no $K_t$-subdivision with high probability.

Instances For
    noncomputable def Hajos.subdivisionUnionBound (n : ) :

    The union bound on the probability that $G(n, 1/2)$ contains a $K_t$-subdivision, for $t = \lceil 10\sqrt n \rceil$: $\binom{n}{t} \cdot e^{-t^2/10}$.

    Instances For
      theorem Hajos.hajosParam_ge (n : ) :
      10 * n (hajosParam n)

      Lower bound on hajosParam: $10\sqrt n \leq \lceil 10\sqrt n \rceil$.

      theorem Hajos.hajosParam_le (n : ) :
      (hajosParam n) 10 * n + 1

      Upper bound on hajosParam: $\lceil 10\sqrt n \rceil \leq 10\sqrt n + 1$.

      theorem Hajos.hajosParam_sq_ge (n : ) :
      100 * n (hajosParam n) ^ 2

      Squaring the lower bound on hajosParam: $100 n \leq t^2$.

      For all sufficiently large $n$, $\log n \leq \tfrac{1}{10} \sqrt n$.

      Asymptotic comparison: for all sufficiently large $n$, $t \log n \leq 2n$ where $t = \lceil 10\sqrt n \rceil$.

      theorem Hajos.pow_eq_exp_mul_log (n : ) (hn : 0 < n) (t : ) :
      n ^ t = Real.exp (t * Real.log n)

      Rewrite a natural power as $n^t = \exp(t \log n)$ when $n > 0$.

      The sequence $e^{-n}$ tends to $0$ as $n \to \infty$.

      For all sufficiently large $n$, $\binom{n}{t} e^{-t^2/10} \leq e^{-n}$ with $t = \lceil 10\sqrt n \rceil$.

      theorem Hajos.hajos_conjecture_counterexample (probKtSubdiv : ) (hP_nonneg : ∀ (n : ), 0 probKtSubdiv n) (hP_le : ∀ (n : ), probKtSubdiv n subdivisionUnionBound n) :

      Counterexample to Hajós's conjecture (Theorem 5.3.2). If $\text{probKtSubdiv}(n)$ is the probability that $G(n, 1/2)$ contains a $K_t$-subdivision with $t = \lceil 10\sqrt n \rceil$, and is dominated by the union bound, then it tends to $0$, giving a $K_t$-subdivision-free graph of chromatic number $\Omega(n / \log n)$ asymptotically larger than $t$.