Documentation

FormalConjectures.ErdosProblems.«184»

Erdős Problem 184 #

References:

A graph $H$ is a cycle or an edge if it is connected and 2-regular, or if it has exactly one edge.

Equations
Instances For

    D is a decomposition of G into subgraphs.

    Equations
    Instances For
      theorem Erdos184.erdos_184 :
      ∃ (f : ), (f =O[Filter.atTop] fun (n : ) => n) ∀ {V : Type u_1} [inst : Fintype V] [DecidableEq V] (G : SimpleGraph V), ∃ (D : Finset G.Subgraph), (∀ HD, IsCycleOrEdge H.coe) IsDecomposition G D D.card f (Fintype.card V)

      Any graph on $n$ vertices can be decomposed into $O(n)$ many edge-disjoint cycles and edges.

      theorem Erdos184.erdos_184.variants.n_log_n :
      ∃ (f : ), (f =O[Filter.atTop] fun (n : ) => n * Real.log n) ∀ {V : Type u_1} [inst : Fintype V] [DecidableEq V] (G : SimpleGraph V), ∃ (D : Finset G.Subgraph), (∀ HD, IsCycleOrEdge H.coe) IsDecomposition G D D.card f (Fintype.card V)

      Erdős and Gallai [EGP66] proved that $O(n \log n)$ many cycles and edges suffices.

      theorem Erdos184.erdos_184.variants.lower_bound :
      c > 0, ∀ᶠ (n : ) in Filter.atTop, have G := SimpleGraph.fromRel fun (i j : Fin n) => i < 3 3 j; ∀ (D : Finset G.Subgraph), (∀ HD, IsCycleOrEdge H.coe)IsDecomposition G D → (1 + c) * n D.card

      The graph $K_{3,n-3}$ shows that at least $(1+c)n$ many cycles and edges are required, for some constant $c>0$.

      theorem Erdos184.erdos_184.variants.covering :
      True ∀ {V : Type} [inst : Fintype V] [DecidableEq V] [Nonempty V] (G : SimpleGraph V), ∃ (D : Finset G.Subgraph), (∀ HD, IsCycleOrEdge H.coe) HD, H.edgeSet = G.edgeSet D.card (Fintype.card V) - 1

      In [Er71] Erdős suggests that only $n-1$ many cycles and edges are required if we do not require them to be edge-disjoint.

      theorem Erdos184.erdos_184.variants.bucic_montgomery :
      ∃ (f : ), (f =O[Filter.atTop] fun (n : ) => n * (↑n).iteratedLog) ∀ {V : Type u_1} [inst : Fintype V] [DecidableEq V] (G : SimpleGraph V), ∃ (D : Finset G.Subgraph), (∀ HD, IsCycleOrEdge H.coe) IsDecomposition G D D.card f (Fintype.card V)

      The best bound available is due to Bucić and Montgomery [BM22], who prove that $O(n\log^* n)$ many cycles and edges suffice, where $\log^*$ is the iterated logarithm function.

      theorem Erdos184.erdos_184.variants.conlon_fox_sudakov (ε : ) :
      ε > 0∃ (f : ), (f =O[Filter.atTop] fun (n : ) => n) ∀ {V : Type u_1} [inst : Fintype V] [DecidableEq V] (G : SimpleGraph V), G.minDegree ε * (Fintype.card V)∃ (D : Finset G.Subgraph), (∀ HD, IsCycleOrEdge H.coe) IsDecomposition G D D.card f (Fintype.card V)

      Conlon, Fox, and Sudakov [CFS14] proved that $O_\epsilon(n)$ cycles and edges suffice if $G$ has minimum degree at least $\epsilon n$, for any $\epsilon>0$.