OPG-37271: six colors for every finite subcubic graph
OpenOPG37271.root_problemLet be any finite simple graph whose maximum degree is at most three. The problem asks for a star edge coloring of with six colors:
The quantifier includes disconnected and empty graphs as well as graphs with vertices of degree below three. A star edge coloring is proper and forbids every bichromatic simple path or cycle of four edges; the paths need not be induced.
import Definitions.Def_opg37271_star_edge_coloring
namespace OPG37271
universe u
/-- OPG-37271: every finite simple graph of maximum degree at most three has
a star edge coloring with six colors. -/
theorem root_problem
{V : Type u} [Fintype V] (G : SimpleGraph V)
(hsubcubic : IsSubcubic G) :
HasStarEdgeColoring G 6 := by sorry
end OPG37271Read-back
What the Lean code literally says, in plain math · gpt-5.6-luna
For every finite type of vertices , every simple graph on , and every hypothesis that each vertex has neighbor-set cardinality at most ,
there exists an edge-coloring of using the six colors such that: (i) whenever , is adjacent to both and , and , the colors assigned to the edges and are different; (ii) there do not exist pairwise distinct vertices with consecutive adjacencies such that the colors of and are equal and the colors of and are equal; and (iii) there do not exist pairwise distinct vertices with cyclic adjacencies such that the colors of and are equal and the colors of and are equal.
Confirmed by the mission captain (proposal self-audit).