BeyondChess™ with Coach Lamont

Week 1: The Board is a Body
CHIMERA Concept: Bodies, Cells & the Still Center
Name:   Date:  
Coach Lamont says: "What's good! Today we're learning the board — but here's the thing: this board is ALIVE. It's a body. Those lines, those squares, that center — it all works together like a living thing. Know this body like you know your own neighborhood."

Part 1: The Body's Structure (Key Vocabulary)

Files (a–h) — The Skeleton
The 8 vertical columns. Like your spine standing up. The structure everything hangs on.
In code: columns in a 2D array. In music: the strings on a guitar.
Ranks (1–8) — The Layers
The 8 horizontal rows. Like floors in a building. Bottom to top from White's view.
In code: rows in a 2D array. In a building: floor 1, floor 2...
Cells (Squares)
The 64 spaces where skeleton meets layer. Every cell has an address: file letter + rank number (example: e4).
In code: array[row][column]. In your city: street + building number.
Diagonals — The Nerves
Lines of same-color cells running at angles. They connect distant parts of the body.
In basketball: a cross-court pass. In code: traversing a matrix diagonally.
The Still Center (d4, d5, e4, e5)
The 4 center squares. The heart of the board. Control the center = control the body.
In code: the main() function. In your life: your breathing, your values.
Light on Right
The board is always set up so the bottom-right corner is a light cell. The body has a correct orientation.
In code: initialization matters. Start wrong = everything wrong.

Part 2: The Body

Here is the board — the body. The center 4 cells are highlighted. That's the heart. Everything serves the heart.

8
7
6
5
d5
e5
4
d4
e4
3
2
1
a
b
c
d
e
f
g
h

Part 3: Know the Body

Section A: True or False

1. The board has 64 cells.
2. The skeleton (files) runs horizontally (side to side).
3. The bottom-right cell should always be a light cell.
4. The layers (ranks) are labeled with letters a through h.
5. The still center is made up of 4 cells.

Section B: Fill in the Blank

6. There are files (skeleton) and ranks (layers) on the board.
7. Files are labeled with and ranks are labeled with .
8. Each cell has an address made of a letter followed by a number.
9. The 4 cells at the heart of the board (the still center) are: , , , .
10. A piece in the center has (more / fewer) possible moves than a piece on the edge.

Section C: Multiple Choice

11. How many cells are on the board?
12. Which of these is a file (part of the skeleton)?
13. Why is the center of the board called the "still center"?

Part 4: Map the Body

Section D: Board Exercise

14. On the board above, put an X on these cells: a1, d4, e5, h8, f3
15. Write the address of the four corner cells of the board:

Bottom-left:    Bottom-right:

Top-left:    Top-right:

Section E: The Still Center

16. A knight on cell e4 (the center) controls 8 cells. A knight on cell a1 (the corner) controls only 2 cells. Same piece. Different position. What does this tell you about the center?
17. Are all the cells on the a-file (the first column of the skeleton) the same color? Explain why or why not.
CS Bridge: Every cell on this board has an address. e4 means "file e, rank 4." In coding, programmers do the exact same thing: board[4][4] — row 4, column 4. When you learned to read chess addresses, you learned to read coordinates — the language of every video game, every map app, every screen on your phone. You already think like a programmer.
Body Check: Draw the board. Circle the still center (the 4 heart cells). Now draw a knight on e4 and count how many cells it can reach. Draw another knight on a1 and count. The center gives FREEDOM. The edge gives LIMITS. That's true on the board. It's true in life. Where you stand changes what you can do.

Part 5: Life Reflection

Coach Lamont says: "Just like in chess, understanding the basics is crucial in life. Before you can build a house, you need a strong foundation. Before you can run, you need to walk."
18. What's the "still center" of your day? The one thing everything else revolves around?
19. The board is a body. Your classroom is a body. Your family is a body. Pick ONE and describe: what are its "parts"? What's at its center?
THE PAUSE — Your Cheat Code: LOOKTHINKCHECKMOVERESET