/** * Hebrew Gematria Systems * * Letter-value tables derived from primary sources. * * ## Primary Sources (Public Domain) * * ### Jewish Encyclopedia (1903) * * Schechter, Solomon, and Caspar Levias. "Gematria." *Jewish Encyclopedia*, * vol. 5, 589–92. New York: Funk and Wagnalls, 1903. * * - Jewish Encyclopedia: https://www.jewishencyclopedia.com/articles/6564-gematria * - Internet Archive (Vol. 5): https://archive.org/details/TheJewishEncyclopediaFunkWagnallVolVDreyfusBrisacGoat1902 * * ### Pardes Rimonim (1548) * * Cordovero, Moses ben Jacob. *Pardes Rimmonim* (פרדס רמונים). Kraków, 1592. * First published 1548. Gate 30, Chapter 8. * * - Sefaria: https://www.sefaria.org/Pardes_Rimmonim.30.8 * - HebrewBooks: https://hebrewbooks.org/14492 */ import type { GematriaSystem, LetterValueTable } from './types.js'; /** * MISPAR HECHRACHI (מספר הכרחי) - Standard/Normal Value * * Source: Jewish Encyclopedia (1903), Section E.1, Page 591 * Quote: "Normal Value, מספר הכרחי, מספר פשוט, counting א—ט as units, * י—צ as tens, ק—ת as hundreds. The final letters have here * the same values as their respective initial forms." */ export declare const MISPAR_HECHRACHI: LetterValueTable; /** * MISPAR GADOL (מספר גדול) - Major/Large Value * * Source: Jewish Encyclopedia (1903), Section E.11, Page 592 * Quote: "Major Value, מספר גדול. In this value the final letters count * as hundreds." * * Note: The specific values 500-900 for finals are inferred from "finals * count as hundreds" - continuing the sequence after ת=400. This is the * universally accepted interpretation. */ export declare const MISPAR_GADOL: LetterValueTable; /** * MISPAR KATAN (מספר קטן) - Minor/Reduced/Cyclical Value * * Source: Jewish Encyclopedia (1903), Section E.2, Pages 591-592 * Quote: "Cyclical or Minor Value, מספר קטן, where the tens, hundreds, * and thousands are reduced to units; e.g., אדם=אמת, i.e., * (40+4+1) = (400+40+1)." */ export declare const MISPAR_KATAN: LetterValueTable; /** * MISPAR KOLEL (מספר כולל) - Inclusive Value * * Source: Jewish Encyclopedia (1903), Section E.3, Page 592 * Quote: "Inclusive Value, מספר כולל, a development of the quaternion, * where each number includes all the other numbers that precede * it in the order of the alphabet; e.g., ה = (5+4+3+2+1) = 15; * כ = (20+10+9+8+7+6+5+4+3+2+1) = 75." * * Note: This is the cumulative sum of STANDARD gematria values, not * ordinal positions. Different from Mispar HaKadmi. */ export declare const MISPAR_KOLEL: LetterValueTable; /** * MISPAR PERATI (מספר פרטי) - Square Value of Letter * * Source: Jewish Encyclopedia (1903), Section E.6, Page 592 * Quote: "Square Value of the Letter, מספר מרובע פרטי; * e.g., דוד = (4² + 6² + 4²) = 68." */ export declare const MISPAR_PERATI: LetterValueTable; /** * MISPAR MESHULASH (מספר משולש) - Cube Value of Letter * * Source: Jewish Encyclopedia (1903), Section E.15, Page 592 * Quote: "Cube Value of the Letter, מעוקב פרטי * (comp. 'Hayyat,' in 'Minhat Yehudi,' iii.)." */ export declare const MISPAR_MESHULASH: LetterValueTable; /** * MISPAR CHITZON (מספר חיצוני) - External Value * * Source: Jewish Encyclopedia (1903), Section E.10, Page 592 * Quote: "External Value, מספר חיצוני, when the contents are disregarded, * every letter counting for 1. The Tetragrammaton can not be * taken in this value." */ export declare const MISPAR_CHITZON: LetterValueTable; /** * MISPAR SIDURI (מספר סידורי) - Ordinal Value * * Source: Pardes Rimonim (1548), Gate 30, Chapter 8 * Derivation: IMPLICIT - ordinal positions (1-22) are required as a * prerequisite for calculating Mispar HaKadmi, proving the concept * was recognized in 1548 even if not named as a separate system. */ export declare const MISPAR_SIDURI: LetterValueTable; /** * MISPAR HAKADMI (מספר הקדמי) - Prior/Ordinal Cumulative Value * * Source: Pardes Rimonim (1548), Gate 30, Chapter 8 * Quote: "מספר הקדמי כגון ג׳ עולה ששה כשנמנה מתחלת האלפא ביתא ועד הג׳. * ד׳ עולה י׳ וה׳ עולה ט״ו כשנמנה מראש האלפא ביתא" * Translation: "Prior number, for example ג equals six when counted from * the beginning of the alphabet to ג. ד equals 10 and ה equals 15 * when counted from the beginning of the alphabet." * * Formula: T(n) = n(n+1)/2 where n is the ordinal position (1-22) * These are triangular numbers based on ordinal position. */ export declare const MISPAR_HAKADMI: LetterValueTable; /** * System metadata for documentation and API */ export declare const SYSTEMS: Record; //# sourceMappingURL=systems.d.ts.map