Improve lower bound for C_3c#70
Open
sebastian-griego wants to merge 1 commit into
Open
Conversation
86c4274 to
458e8a0
Compare
458e8a0 to
cea3419
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This updates the lower bound for the 4-slope Kakeya-type sum-difference constant from
[
C_{3c} \geq 1.67471
]
to
[
C_{3c} \geq 1.67473389.
]
The bound comes from a 26-point entropy construction. The rounded weights below sum to
[
0.99999999999852250171,
]
and after normalizing them, one obtains
[
\begin{aligned}
H(X) &= 1.6377686609033206,\
H(Y) &= 1.6377686609051913,\
H(X+Y) &= 1.6377686609063419,\
H(X+2Y) &= 1.6377686607925004,\
H(X-Y) &= 2.7428266885756738.
\end{aligned}
]
Thus
[
\frac{H(X-Y)}{\max(H(X),H(Y),H(X+Y),H(X+2Y))}
= 1.6747338949921000\ldots,
]
which certifies the stated lower bound.
This also fixes the apparent typo in the entropy formulation on the
3c.mdpage, changingC_{3b}toC_{3c}.Certificate
Verification
A short Python script using
decimal.Decimalwith 100 digits of precision checks the certificate. It normalizes the rounded weights before computing the entropies.Expected output includes:
AI assistance disclosure
The construction, patch, PR text, and verification script were generated with ChatGPT 5.5 Pro. I ran the verification script locally before submission.