SkarpSkarp

Chapter 5 of 10

From Number to Symbol: Combinatorics, Gematria, and Letter Substitution

Behind the mystical language of ‘gates’ and ‘paths’ lies a precise numerical skeleton of combinations, substitutions, and ciphers. See how simple arithmetic, gematria, and letter‑exchange systems become tools for reading reality as a coded text.

15 min readen

1. From Mystical Gates to Simple Counting

From Image to Structure

Earlier you met 22 Hebrew letters as channels of creation and the 231 gates of Sefer Yetzirah. Now we connect that imagery to concrete math and cryptography tools.

What You Will Do

You will count letter-pairs from 22 letters, match this to the 231 gates, learn basic gematria, explore letter-substitution systems, and consider cautions about using numerology.

Why It Matters

These ideas come from Jewish mysticism but today are also studied as early examples of combinatorics and cipher design. You do not need Hebrew; we keep the arithmetic simple.

2. Combinatorics Warm-Up: Pairing Letters

The Pairing Question

We ask: with 22 distinct letters, how many different unordered pairs can we form, where order does not matter (AB = BA) and no letter is paired with itself?

Combinations Formula

For combinations of size 2 from n items, use C(n, 2) = n(n − 1)/2. First count ordered pairs n(n − 1), then divide by 2 because AB and BA are the same pair.

Apply to 22 Letters

For n = 22: C(22, 2) = 22×21/2. Compute 22×21 = 462, then 462/2 = 231. So there are 231 distinct letter-pairs: the numerical basis of the 231 gates.

3. Try the Counting Yourself

Work through this mini-exercise to make the combinatorics concrete.

  1. Tiny alphabet: Imagine an alphabet of 4 letters: A, B, C, D.
  • List all unordered pairs (no repeats like AA, and AB = BA).
  • Check that your list has C(4, 2) pairs.
  1. Check with the formula:
  • Compute C(4, 2) = 4 × 3 / 2.
  • How many pairs should you get?
  1. Connect to 22 letters:
  • Compare the feeling of listing pairs for 4 letters vs. 22 letters.
  • Why is a formula useful when the set is large?

Suggested answer (peek after trying):

  1. Pairs from A, B, C, D:
  • AB, AC, AD, BC, BD, CD
  • That is 6 pairs.
  1. Formula: C(4, 2) = 4 × 3 / 2 = 12 / 2 = 6.

This is exactly the same pattern that scales up from 4 letters (6 gates) to 22 letters (231 gates).

4. Visualizing the 231 Gates as a Graph

Letters as Nodes

Picture each of the 22 Hebrew letters as a node (dot). Now connect every node to every other node with a line. This gives a complete graph on 22 vertices, written K22.

Edges and Gates

In graph theory, the number of edges in Kn is C(n, 2) = n(n − 1)/2. For K22 this is 231 edges. In Sefer Yetzirah language, each edge is a gate or path between two letters.

Mysticism Meets Graph Theory

Later Kabbalistic diagrams often show only some paths, but the 231 gates idea matches exactly the complete graph on 22 nodes: a mystical image with a clear combinatorial structure.

5. Gematria: Turning Letters into Numbers

What Is Gematria?

Gematria assigns numerical values to Hebrew letters. A word’s value is the sum of its letters. It is traditional in Jewish texts and central in Kabbalah.

Standard Values 1–10

In standard gematria: Alef=1, Bet=2, Gimel=3, Dalet=4, He=5, Vav=6, Zayin=7, Chet=8, Tet=9, Yod=10.

Tens and Hundreds

Then: Kaf=20, Lamed=30, Mem=40, Nun=50, Samekh=60, Ayin=70, Pe=80, Tsadi=90, Qof=100, Resh=200, Shin=300, Tav=400.

6. Worked Gematria Examples

Example 1: Shalom

Shalom (peace): Shin–Lamed–Vav–Mem. Values: 300 + 30 + 6 + 40 = 376. The word “peace” carries the numerical value 376.

Example 2: Ahavah

Ahavah (love): Alef–He–Bet–He. Values: 1 + 5 + 2 + 5 = 13. So “love” has gematria value 13.

Example 3: Echad

Echad (one): Alef–Chet–Dalet. Values: 1 + 8 + 4 = 13. Love and one both equal 13, a classic symbolic link in traditional readings.

7. Optional: A Tiny Gematria Calculator

If you know a bit of Python, you can experiment with gematria computationally. This is not traditional practice, but a modern way (common in digital humanities) to explore patterns.

Run this code in a Python 3 environment:

8. Letter Substitution and the 231 Gates

From Gates to Swaps

Each gate links two letters. You can read this mystically as a path of influence, or cryptographically as a possible swap in a substitution cipher.

Classic Systems: Atbash, Albam

Atbash pairs first and last letters (Alef–Tav, Bet–Shin, etc.). Albam pairs the first half of the alphabet with the second. Each is a simple substitution cipher.

Subsets of 231 Pairs

The 231 gates list all possible letter-pairs. A specific cipher like Atbash chooses a structured subset of these, turning mystical pairing into a concrete substitution rule.

9. Practice: Atbash on a Simple Word

Let’s practice a simple substitution idea using Atbash, conceptually.

For simplicity, we will work with the Latin alphabet as an analogy:

  • Write A–Z in order.
  • Underneath, write Z–A.
  • Pair letters vertically: A↔Z, B↔Y, C↔X, etc.

Task:

  1. Using this A↔Z, B↔Y, C↔X, ... mapping, encode the word:
  • `KING`
  1. Decode the Atbash of:
  • `PRMT`

Work it out before peeking.

Suggested solution:

  1. Encoding KING:
  • K ↔ P
  • I ↔ R
  • N ↔ M
  • G ↔ T
  • So KING → PRMT
  1. Decoding PRMT:
  • P ↔ K
  • R ↔ I
  • M ↔ N
  • T ↔ G
  • So PRMT → KING

This mirrors how Atbash works on Hebrew: each letter is replaced by its "mirror" across the alphabet. The 231 gates provide the full space of possible links; Atbash chooses one elegant pattern.

10. Quick Check: Combinatorics and Gematria

Answer this question to check your understanding of the core ideas.

Which statement is most accurate given what you have learned?

  1. The 231 gates are based on pairing each of the 22 letters with every other letter once, which mathematically equals C(22, 2).
  2. Gematria assigns random numbers to letters, so different traditions never agree on values.
  3. Letter-substitution systems like Atbash use all 231 possible pairs at once to encrypt messages.
Show Answer

Answer: A) The 231 gates are based on pairing each of the 22 letters with every other letter once, which mathematically equals C(22, 2).

The 231 gates correspond to all unordered pairs of 22 letters, which is C(22, 2) = 231. Standard gematria uses a stable, widely shared value system (1–400), and Atbash uses a specific structured pairing, not all 231 pairs simultaneously.

11. Cautions: Methodological and Psychological

Methodological Limits

Combinatorics and gematria create patterns but do not by themselves prove claims about reality. Shared numerical values can occur by chance and are not automatic evidence.

Psychological Risks

Humans over-detect patterns. Using numerology to replace evidence-based reasoning for major life choices can be harmful. Treat it as symbolic, not as binding orders.

A Balanced Use

Use gematria and substitutions as meditative or literary tools, while relying on critical thinking, data, and expert advice for practical decisions.

12. Flashcards: Key Terms Review

Flip through these cards to review the main concepts from this module.

231 gates
In Sefer Yetzirah, the set of all pairwise connections among the 22 Hebrew letters. Mathematically, the 231 unordered pairs counted by C(22, 2).
Combination C(n, 2)
The number of unordered pairs from n distinct items: C(n, 2) = n(n − 1)/2.
Complete graph Kn
A graph where every pair of n vertices is connected by an edge. It has C(n, 2) edges. For n = 22, K22 has 231 edges.
Gematria (standard system)
A method assigning numerical values to Hebrew letters (1–9, 10–90, 100–400). A word’s value is the sum of its letters.
Atbash
A classic Hebrew letter-substitution system pairing the first and last letters of the alphabet, the second and second-to-last, and so on.
Simple substitution cipher
An encryption method where each letter is consistently replaced by another specific letter according to a fixed mapping.
Apophenia
A psychological term for seeing meaningful patterns in random or unrelated data, relevant to over-interpreting numerological coincidences.

Key Terms

Atbash
A letter-substitution system that maps each Hebrew letter to its counterpart from the opposite end of the alphabet (first with last, second with second-to-last, etc.).
Gematria
A traditional Jewish technique that assigns numerical values to Hebrew letters and computes the value of words by summing their letters.
231 gates
The full set of pairwise connections among the 22 Hebrew letters described in Sefer Yetzirah, corresponding to the 231 unordered pairs counted by C(22, 2).
Apophenia
The tendency to perceive meaningful connections or patterns between unrelated or random things, relevant to over-interpreting numerological results.
Combination C(n, 2)
The number of ways to choose 2 items from n distinct items without regard to order: C(n, 2) = n(n − 1)/2.
Complete graph (Kn)
A graph in which every pair of n vertices is connected by an edge; it has C(n, 2) edges.
Simple substitution cipher
An encryption scheme where each plaintext letter is replaced by a fixed ciphertext letter according to a one-to-one mapping.
Standard gematria (mispar hechrechi)
The most common gematria system, assigning 1–9 to the first nine letters, 10–90 by tens to the next eight, and 100–400 by hundreds to the last four.

Finished reading?

Test your understanding with a custom practice exam on this chapter.

Test yourself