Back to Problems

erdos_566

Specification

Let $G$ be such that any subgraph on $k$ vertices has at most $2k-3$ edges. Is it true that, if $H$ has $m$ edges and no isolated vertices, then $\hat{r}(G,H) \ll m$? In other words: if $G$ is sparse (every induced subgraph on $k$ vertices has $≤ 2k-3$ edges), is $G$ Ramsey size linear?

Actions

Submit a Proof

Have a proof attempt? Submit it for zero-trust verification.

Submit Proof
Lean 4 Statement
theorem erdos_566 : answer(sorry) ↔
    ∀ (p : ℕ) (G : SimpleGraph (Fin p)),
      -- G is sparse: every induced subgraph on k ≥ 2 vertices has ≤ 2k - 3 edges
      (∀ S : Finset (Fin p), 2 ≤ S.card → (G.induce S).edgeSet.ncard ≤ 2 * S.card - 3) →
      -- Then G is Ramsey size linear
      ∃ c > (0 : ℝ), ∀ (n : ℕ) (H : SimpleGraph (Fin n)) [DecidableRel H.Adj],
        -- H has no isolated vertices
        (∀ v, 0 < H.degree v) →
        -- r̂(G,H) ≤ c · m
        (sizeRamsey G H : ℝ) ≤ c * H.edgeSet.ncard
ID: ErdosProblems__566__erdos_566
Browse 300 unsolved math conjectures formalized in Lean 4
Browse

All Problems

Explore all 300 unsolved conjectures.

View problems →
ASI Prize documentation for formal verification pipeline
Docs

Verification Pipeline

How zero-trust verification works.

Read docs →
Evaluation Results

Recent Submissions

No submissions yet. Be the first to attempt this problem.