File | Date | Author | Commit |
---|---|---|---|
9.ico | 2025-04-13 |
![]() |
[ad7164] Add files via upload |
A.png | 2025-04-13 |
![]() |
[ad7164] Add files via upload |
Infinite Numerical Magic Square V1.1.zip | 2025-04-11 |
![]() |
[4fda12] Add files via upload |
README.md | 2025-04-11 |
![]() |
[9c1aa7] Update README.md |
远古洛书-无限数值幻方-中文.md | unknown | ||
远古洛书-无限数值幻方V1.1.zip | unknown |
Magic squares are ancient mathematical puzzles full of charm. Below is a detailed introduction:
A Magic Square is an n×n square matrix composed of distinct numbers that satisfies:
- The sum of numbers in each row and column is equal
- The sum of numbers in both main diagonals is also equal
- Typically uses consecutive natural numbers from 1 to n² (some variations may allow repeated numbers)
The common sum of each row/column/diagonal. Calculation formula:
Magic Constant = n(n² + 1)/2
- 3×3 Magic Square: Magic Constant = 15
- 4×4 Magic Square: Magic Constant = 34
Note: After downloading and running the program, view the detailed step-by-step example diagram on the program webpage.
Note: Create a magic square.xlsx file by inputting numerical values, including detailed step-by-step reference tables.
Program download address:https://github.com/jiqi136/Magic-square/releases/download/untagged-8e3467f4e2a4ee5e386f/Infinite.Numerical.Magic.Square.V1.1.zip
Fill number 1 in the first cell of the top row, then fill increasing odd numbers spaced apart until reaching the square number 25.
picture
Fill number 2 in the last cell of the bottom row, then fill increasing even numbers spaced apart until reaching 24 (square number minus one).
picture
Insert blank rows and columns between each existing row and column.
picture
Rotate the diamond frame 45 degrees to align, then copy the numbers within the frame to a new table.
picture
Complete: Batch verify sum values using 'Auto Sum' in the 'Home' tab at the top right of the xls sheet.
Singly even: Even numbers not divisible by 4 (e.g., 6,10,18...)
Note: After downloading and running the program, view the detailed step-by-step example diagram on the program webpage.
Note: Create a magic square.xlsx file by inputting numerical values, including detailed step-by-step reference tables.
Program download address:https://github.com/jiqi136/Magic-square/releases/download/untagged-8e3467f4e2a4ee5e386f/Infinite.Numerical.Magic.Square.V1.1.zip
Introduce the creation of a single even 6 divided by 2 to form a 3 magic square.
picture
Multiply each value of the 3 magic square by 4 and subtract 3.
picture
Split the 3 magic square into Table A and Table B with alternating values.
picture
Expand each value in Table A with 4 adjacent numbers to form sub-squares.
Increment by 1 in forward order: sub-square top row [n+0, n+1]
, bottom row [n+2, n+3]
.
picture
Decrement by 1 in reverse order: sub-square top row [n+3, n+2]
, bottom row [n+1, n+0]
.
pictureA
pictureB
Complete: Batch verify sum values using 'Auto Sum' in the 'Home' tab at the top right of the xls sheet.
picture
Doubly even: Even numbers divisible by 4 (e.g., 8,12,16...)
Note: After downloading and running the program, view the detailed step-by-step example diagram on the program webpage.
Note: Create a magic square.xlsx file by inputting numerical values, including detailed step-by-step reference tables.
Program download address:https://github.com/jiqi136/Magic-square/releases/download/untagged-8e3467f4e2a4ee5e386f/Infinite.Numerical.Magic.Square.V1.1.zip
Introducing the creation of a doubly even 8 magic square divided by 2 into 4 magic squares.
picture
Each value of the 4 magic square is multiplied by 4 and then subtracted by 3.
picture
Expand each value into 4 adjacent numbers:
Top row [n+0, n+3]
, bottom row [n+2, n+1]
.
Example with n=1: Small square's top row [1, 4]
, bottom row [3, 2]
.
picture
Expansion method for the lower section:
Top row [n+3, n+0]
, bottom row [n+1, n+2]
.
picture
Complete: Batch verify sum values using 'Auto Sum' in the 'Home' tab at the top right of the xls sheet.
picture