A New Lower Bound for the Ramsey Number R(4, 8)
The lower bound for the classical Ramsey number R(4, 8) is improved from 56 to 58. The author has found a new edge coloring of K_{57} that has no complete graphs of order 4 in the first color, and no complete graphs of order 8 in the second color. The coloring was found using a SAT solver which is based on MiniSat and customized for solving Ramsey problems.
š” Research Summary
The paper addresses the longāstanding problem of improving the lower bound for the classical twoācolor Ramsey number R(4,8). The author demonstrates that the bound can be raised from 56 to 58 by constructing a twoācolor edgeācoloring of the complete graph Kā ā that contains no monochromatic Kā in the first color and no monochromatic Kā in the second color.
The methodology begins with the standard encoding of the Ramsey problem into a Boolean satisfiability (SAT) instance. For a given n, each unordered pair of vertices (i, j) is represented by a Boolean variable eᵢⱼ that is true when the edge is colored with the first color and false otherwise. The requirement āno Kā in colorāÆ1ā and āno Kā in colorāÆ2ā translates into a conjunctive normal form (CNF) consisting of clauses that forbid allātrue assignments on the edges of any sāset and allāfalse assignments on the edges of any tāset. Directly encoding these constraints leads to O(n²) variables and O(nĀ·s + nĀ·t) clauses, which quickly becomes intractable for the sizes of interest.
To dramatically reduce the search space, the author introduces a set of auxiliary āZāvariablesā zā (1āÆā¤āÆkāÆā¤āÆnā1) that capture the color of edges solely based on the distance k = jāi (mod n). The constraint eᵢⱼ ā z_{jāi} is expressed by two clauses per edge, effectively collapsing the n(nā1)/2 edge variables to only nā1 Zāvariables. This āZāconstraintā forces the coloring to be highly symmetric (circulant), which both simplifies the SAT instance and preserves many useful structural properties of Ramsey graphs.
While the full Zāconstraint works for several known Ramsey graphs (e.g., a (4,7)ācoloring of Kāā), it is too restrictive for larger parameters; for instance, no (4,7)āgraph exists with nāÆ>āÆ46 under the strict Zāconstraint. To overcome this limitation, the author designs a dynamic relaxation scheme. During the SAT search, each Zāclause that causes a conflict receives a penalty score. After a predetermined number of failures, the algorithm removes a subset of highāpenalty Zāclauses, restarts the search, and repeats the process. This approach allows partial retention of the symmetry while giving the solver enough freedom to find a solution. Additional relaxation strategiesāsuch as omitting specific Zāclauses (āimperfect Zā) or partitioning the Zāvariables according to row/column patterns (āpartitioned Zā)āare also explored.
The experimental pipeline proceeds as follows. First, a known (4,7)ācoloring of Kāā (FigureāÆ2) is fixed; all edges among the first 48 vertices retain their colors. The remaining edges (those involving vertices 48ā¦56) are left undecided. The SAT instance for these unsettled edges consists of 468 Boolean variables, 56 Zāvariables, roughly 3.48āÆmillion Ramsey clauses, and 936 Zāclauses. The solver, a customized MiniSat variant, runs for about 1.87āÆĆāÆ10ā¶ seconds (ā21 days) on a standard desktop (Intel Core i7, 8āÆGB RAM). Two rounds of Zāclause relaxation are performed, each discarding about 50āÆ% of the remaining Zāclauses, ultimately retaining only about 25āÆ% of the original Zāconstraints. The final model yields a complete twoācoloring of Kā ā that satisfies the Ramsey conditions, which is displayed in FigureāÆ3 and listed as an adjacency list in the appendix (FigureāÆ4).
The existence of this coloring proves that R(4,8)āÆā„āÆ58, improving the previous best lower bound of 56. The paper also provides a table (TableāÆ1) summarizing the largest n for which ZāRamsey graphs R_Z(s,t,n) have been found for various (s,t) pairs, illustrating the effectiveness of the Zāconstraint approach across a range of parameters.
In the discussion, the author notes that the method scales well: the specialized program computes the necessary clauses on the fly, avoiding the memory overhead of storing the full CNF. This enables handling instances with nāÆ>āÆ100 within reasonable CPU time. The paper concludes by pointing readers to a dedicated website where the source code, detailed data, and additional Ramsey graphs (including the new (4,8)āgraph) are available. Future work is suggested in extending the technique to other unresolved Ramsey numbers, refining the relaxation heuristics, and exploring alternative symmetry constraints that may yield even larger lower bounds.
Overall, the work showcases how modern SAT solving, combined with clever symmetry exploitation and adaptive constraint relaxation, can push the frontier of combinatorial mathematics, delivering a concrete improvement in the longāstanding problem of determining Ramsey numbers.
Comments & Academic Discussion
Loading comments...
Leave a Comment