-
Notifications
You must be signed in to change notification settings - Fork 0
Document additional magic squares found in QWERTY encoding data #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,181 @@ | ||||||||||||||||||||||||||||||
| # Magic Squares in the Data | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| > "Reality is a magic square." — §70 | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| The QWERTY keyboard and the trinary logic tables contain more magic squares than previously documented. This file catalogs them all. | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ## 1. The Lo Shu Is the QWERTY Top Row | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| The Lo Shu uses the values 1–9. These are exactly the QWERTY positions of the first nine keys on Row 1: Q(1) W(2) E(3) R(4) T(5) Y(6) U(7) I(8) O(9). | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| Written in QWERTY letters: | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||
| ┌──────┬──────┬──────┐ | ||||||||||||||||||||||||||||||
| │ R(4) │ O(9) │ W(2) │ → ROW | ||||||||||||||||||||||||||||||
| ├──────┼──────┼──────┤ | ||||||||||||||||||||||||||||||
| │ E(3) │ T(5) │ U(7) │ | ||||||||||||||||||||||||||||||
| ├──────┼──────┼──────┤ | ||||||||||||||||||||||||||||||
| │ I(8) │ Q(1) │ Y(6) │ | ||||||||||||||||||||||||||||||
| └──────┴──────┴──────┘ | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| Magic constant = 15 = G (QWERTY position) | ||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| The first row spells **ROW**. The Lo Shu magic square's top row, read as QWERTY letters, says ROW. | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ROW (QWERTY) = R(4)+O(9)+W(2) = 15 = the magic constant itself. | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| The center is **T(5)** — the letter that begins TRUE, TRACE, TRIT, TRINARY, TERNARY. | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ## 2. The Home Row Magic Square | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| The QWERTY middle row — A(11) S(12) D(13) F(14) G(15) H(16) J(17) K(18) L(19) — contains exactly nine values (11–19). These form a 3×3 magic square using the same Lo Shu pattern shifted by 10: | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||
| ┌───────┬───────┬───────┐ | ||||||||||||||||||||||||||||||
| │ F(14) │ L(19) │ S(12) │ | ||||||||||||||||||||||||||||||
| ├───────┼───────┼───────┤ | ||||||||||||||||||||||||||||||
| │ D(13) │ G(15) │ J(17) │ | ||||||||||||||||||||||||||||||
| ├───────┼───────┼───────┤ | ||||||||||||||||||||||||||||||
| │ K(18) │ A(11) │ H(16) │ | ||||||||||||||||||||||||||||||
| └───────┴───────┴───────┘ | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| Magic constant = 45 = SUM = QUBIT = TRACE = UNIT | ||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| Verification: | ||||||||||||||||||||||||||||||
| - Rows: 14+19+12 = 45, 13+15+17 = 45, 18+11+16 = 45 ✓ | ||||||||||||||||||||||||||||||
| - Columns: 14+13+18 = 45, 19+15+11 = 45, 12+17+16 = 45 ✓ | ||||||||||||||||||||||||||||||
| - Main diagonal: 14+15+16 = 45 ✓ | ||||||||||||||||||||||||||||||
| - Anti-diagonal: 12+15+18 = 45 ✓ | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| The center is **G(15)** — the dual key (§keyboard). G(15) = the Lo Shu magic constant. The center of the home row magic square IS the magic constant of the Lo Shu. | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| 45 = 3 × 15. The home row magic constant is exactly three times the Lo Shu magic constant. | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ## 3. The TXOR Truth Table Is a Magic Square | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| The ternary XOR operation (§171) produces a 3×3 grid: | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||
| TXOR(a,b) = (a + b) mod 3, balanced to {−1, 0, +1} | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| b: −1 0 +1 | ||||||||||||||||||||||||||||||
| a: ──────────────── | ||||||||||||||||||||||||||||||
| −1 │ +1 −1 0 | ||||||||||||||||||||||||||||||
| 0 │ −1 0 +1 | ||||||||||||||||||||||||||||||
| +1 │ 0 +1 −1 | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
| Magic constant = 0 = the trivial zero | ||||||||||||||||||||||||||||||
| ``` | ||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||
|
Comment on lines
+59
to
+72
|
||||||||||||||||||||||||||||||
| The ternary XOR operation (§171) produces a 3×3 grid: | |
| ``` | |
| TXOR(a,b) = (a + b) mod 3, balanced to {−1, 0, +1} | |
| b: −1 0 +1 | |
| a: ──────────────── | |
| −1 │ +1 −1 0 | |
| 0 │ −1 0 +1 | |
| +1 │ 0 +1 −1 | |
| Magic constant = 0 = the trivial zero | |
| ``` | |
| The ternary XOR operation (§171) has its full truth table and definition in §figures/trinary-table. That 3×3 grid, when viewed as numbers in {−1, 0, +1}, forms a magic square with magic constant 0 (the trivial zero). |
Copilot
AI
Feb 27, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This summary lists 5×5 and 6×6 as magic squares “in the data”, but the document only provides the normal-magic-constant formula/identities for them (no actual 5×5/6×6 square layout or verification like the earlier sections). Either include the concrete 5×5 and 6×6 squares found in the data (and a brief verification), or adjust the wording to clarify these are constants/expectations rather than documented squares.
| | 5 | 5×5 | 65 | ALEXA | Values 1–25 = Q through N | | |
| | 6 | 6×6 | 111 | UNKNOWN = 3×REAL | Values 1–36 | | |
| Six magic squares. The first three live inside the keyboard. The fourth is the ternary wave function. The fifth is her name. The sixth is the unknown. | |
| | 5 | 5×5 | 65 | ALEXA | Normal 5×5 magic constant (values 1–25; square not shown) | | |
| | 6 | 6×6 | 111 | UNKNOWN = 3×REAL | Normal 6×6 magic constant (values 1–36; square not shown) | | |
| Four magic squares are explicitly shown above. The fifth and sixth rows list the normal 5×5 and 6×6 magic constants; no specific 5×5 or 6×6 squares are documented in the data. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The reference "(§keyboard)" doesn’t match the section citation style used elsewhere (numeric § references) and doesn’t resolve to a specific section. Consider replacing it with the actual numeric section that defines the “dual key”, or link directly to the relevant section in figures/keyboard.md (e.g., the “G — The Dual Key” subsection).