Cubic matching-complement bridge
ProvedCubicP3Partition.cubic_matching_complement_iff_two_factorLet be a finite simple cubic graph. Then has a perfect matching whose relative complement is a spanning 2-factor with every component order divisible by three if and only if has a spanning 2-factor with every component order divisible by three:
No connectivity or nonemptiness hypothesis is imposed. This bridge identifies the matching formulation of the strengthened route with its 2-factor formulation.
import Definitions.Def_cubic_p3_partition_models
namespace CubicP3Partition
universe u
/-- In a cubic graph, divisible complementary perfect matchings and divisible 2-factors coincide. -/
theorem cubic_matching_complement_iff_two_factor
{V : Type u} [Fintype V] (G : SimpleGraph V) (hCubic : Cubic G) :
HasDivisibleComplement G ↔ HasDivisibleTwoFactor G := by sorry
end CubicP3PartitionRead-back
What the Lean code literally says, in plain math · gpt-5.6-luna
对宇宙 中的任意类型 (带有 Fintype V 实例)、任意定义在 上的简单图 ,以及假设 hCubic:对每个 ,满足 的 的自然数基数恰好为 ,定理声明以下两个命题等价。左侧是:存在一个简单图 定义在 上,使每条 边都是 的边且每个顶点在 中恰有一个邻居;令 为满足 当且仅当 且不满足 的图,则每条 边都是 的边、每个顶点在 中恰有两个邻居,并且对每个 ,在 中从 可达的顶点数量是 的倍数。右侧是:存在一个简单图 定义在 上,使每条 边都是 的边、每个顶点在 中恰有两个邻居,并且对每个 ,在 中从 可达的顶点数量是 的倍数。等价关系是双向的;除了有限性实例、图 和 hCubic 外,没有连通性、阶数或非空性前提,因而也包括空的有限顶点类型情形。
Confirmed by the mission captain (proposal self-audit).