Group Abstract Group Abstract

Message Boards Message Boards

OpenAI disproves Erdős unit distance conjecture

Posted 20 days ago

enter image description here

Attachments:
POSTED BY: Ed Pegg
5 Replies

The code here reconstructs the exact same optimal configuration shown on the right-hand side of this Twitter/X post using Moser ring:

moser

\[Alpha]=N@Exp[I*ArcCos[1/2]];
\[Beta]=N@Exp[I*ArcCos[5/6]];r=Range[-2,2];
pt2=Select[Table[a+b*\[Alpha]+c*\[Beta]+d*\[Alpha]*\[Beta],{a,r},{b,r},{c,r},{d,r}]//Flatten,Abs[#]<=4.&];
f=Nearest[pt2,Method->Automatic];
lines=Flatten[
Table[With[{pool=f[ele,{All,4}]},{ele,#}&/@Select[pool,Abs[EuclideanDistance[#,ele]-1.]<0.0001&]],{ele,pt2}],1];
conn=Union[Sort/@lines];
vtx=Flatten[conn]//Union;
ComplexListPlot[vtx,PlotStyle->{StandardOrange},PlotStyle->Tiny,Prolog->{Opacity[0.4],StandardBlue,Line[ReIm/@conn]},Axes->False,PlotRangePadding->0]

moser2

POSTED BY: Shenghui Yang

og

The following code reconstructs the graphics above:

\[Omega]=-0.5+Sqrt[3]/2.*I;
r={-2,-1,0,1,2};
pt=Table[a+b*I+c*\[Omega]+d*I*\[Omega],{a,r},{b,r},{c,r},{d,r}]//Flatten;
conn=Select[Subsets[pt,{2}],Abs[Abs[#[[1]]-#[[2]]]-1]<=0.00001&];
ComplexListPlot[Flatten[conn]//Union,PlotStyle->{StandardOrange},
Prolog->{Opacity[0.4],StandardBlue,Line[ReIm/@conn]},Axes->False]

twitter

POSTED BY: Shenghui Yang

Great -- thanks for sharing!

POSTED BY: Anton Antonov

This is great! Note, this plot was featured in Nature news:

AI cracks 80-year-old mathematics challenge — researchers are astonished

DOI: https://doi.org/10.1038/d41586-026-01651-0

Looks like this is quite minimal implementation of that plot in Wolfram:

p=Tuples[Range[-2,2],4] . I^{0,1,4/3,7/3};
RelationGraph[Abs[#1-#2]==1&,p,VertexCoordinates->ReIm@p]

adding VertexStyle->Red renders this:

enter image description here

POSTED BY: Vitaliy Kaurov

enter image description here -- you have earned Featured Contributor Badge enter image description here Your exceptional post has been selected for our editorial columns Staff Picks http://wolfr.am/StaffPicks and Publication Materials https://wolfr.am/PubMat and Your Profile is now distinguished by a Featured Contributor Badge and is displayed on the Featured Contributor Board. Thank you!

POSTED BY: EDITORIAL BOARD
Reply to this discussion
Community posts can be styled and formatted using the Markdown syntax.
Reply Preview
Attachments
Remove
or Discard