Documentation

Mathlib.Combinatorics.SimpleGraph.Extremal.TuranDensity

Turán density #

This files defines the Turán density of a simple graph.

Main definitions #

noncomputable def SimpleGraph.turanDensity {W : Type u_2} (H : SimpleGraph W) :

The Turán density of a simple graph H is the limit of extremalNumber n H / n.choose 2 as n approaches .

See SimpleGraph.tendsto_turanDensity for proof of existence.

Equations
Instances For

    The Turán density of a simple graph H is well-defined.

    theorem SimpleGraph.isEquivalent_extremalNumber {W : Type u_2} {H : SimpleGraph W} (h : H.turanDensity 0) :
    Asymptotics.IsEquivalent Filter.atTop (fun (n : ) => (extremalNumber n H)) fun (n : ) => H.turanDensity * (n.choose 2)

    extremalNumber n H is asymptotically equivalent to turanDensity H * n.choose 2 as n approaches .