Exact common-color table in the (20,7) palette
ProvedOPG401.common_allowed_colorsFor colors , let and be the residues that are -compatible with and . If is their shortest cyclic distance, then
Natural subtraction is used in the cardinality formula. The statement covers all ordered color pairs, including equal and antipodal residues. It is the finite boundary table for preserving a coloring while restoring a degree-two vertex.
import Definitions.Def_opg401_circular_coloring
namespace OPG401
/-- The exact local `(20,7)` extension table for two prescribed neighbor
colors, including equal and antipodal colors. -/
theorem common_allowed_colors (a b : Fin 20) :
((allowedColors a ∩ allowedColors b).card = 7 - circularDistance a b) ∧
((allowedColors a ∩ allowedColors b).Nonempty ↔ circularDistance a b ≤ 6) := by sorry
end OPG401Read-back
What the Lean code literally says, in plain math · gpt-5.6-luna
For every pair of residues a,b ∈ Fin 20, let D = circularDistance(a,b), and let Sₐ and S_b be the finite sets of residues z ∈ Fin 20 satisfying 7 ≤ circularDistance(z,a) ≤ 13 and 7 ≤ circularDistance(z,b) ≤ 13, respectively. The declaration asserts the conjunction
and
where 7 − D is natural-number subtraction and D is the minimum of the two modular natural-number differences between the representatives of a and b. The assertion applies equally when a and b are equal or otherwise specially positioned residues.
Confirmed by the mission captain (proposal self-audit).