Erdős Problem 85 #
Reference: erdosproblems.com/85
Let $f(n)$ be the smallest integer for which every graph on $n$ vertices with minimal degree $\geq f(n)$ contains a $C_4$.
Equations
- Erdos85.f n = sInf {k : ℕ | ∀ (G : SimpleGraph (Fin n)), G.minDegree ≥ k → (SimpleGraph.cycleGraph 4).IsContained G}