The known seven-color bound for finite subcubic simple graphs
OpenOPG37271.subcubic_seven_color_boundLet be a finite simple graph in which every vertex has at most three neighbors. Then admits a star edge coloring with seven colors:
A star edge coloring is proper and has no bichromatic simple path or cycle of four edges. The path is not required to be induced. This is the established general upper bound that precedes the six-color conjecture.
import Definitions.Def_opg37271_star_edge_coloring
namespace OPG37271
universe u
/-- The known general upper bound: every finite subcubic simple graph has a
star edge coloring with seven colors. -/
theorem subcubic_seven_color_bound
{V : Type u} [Fintype V] (G : SimpleGraph V)
(hsubcubic : IsSubcubic G) :
HasStarEdgeColoring G 7 := by sorry
end OPG37271Read-back
What the Lean code literally says, in plain math · gpt-5.6-luna
For every finite type , every simple graph on , and every hypothesis that each vertex has at most three neighbors,
there exists an assignment of one of the seven colors to every edge of such that: (i) whenever are both adjacent to the same vertex , the colors assigned to the edges and are different; (ii) there do not exist five 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 four pairwise distinct vertices with adjacencies such that the colors of and are equal and the colors of and are equal.
Confirmed by the mission captain (proposal self-audit).