Biblical Aramaic — Morphological Overview¶
Statistical analysis of the Aramaic sections of the Hebrew Bible. Data: MACULA Hebrew WLC (Daniel and Ezra Aramaic sections, with minor occurrences in Genesis 31:47 and Jeremiah 10:11).
Aramaic in the OT:
- Daniel 2:4b–7:28 (~3,000 tokens)
- Ezra 4:8–6:18; 7:12–26 (~700 tokens)
- Gen 31:47 (2 words); Jer 10:11 (1 verse)
This notebook covers:
- Overview of Aramaic token distribution
- Verb stem profiles (Peal, Pael, Haphel, Peil, Hithpeel, etc.)
- Conjugation distribution
- Top verb roots
- Comparison of Daniel vs. Ezra
import sys
sys.path.insert(0, '../../../src')
from bible_grammar.aramaic_profile import (
print_aramaic_overview,
print_aramaic_stem_profile,
print_aramaic_conj_profile,
print_aramaic_stem_conj,
print_aramaic_top_roots,
print_aramaic_book_distribution,
aramaic_stem_chart, aramaic_conj_chart, aramaic_stem_book_chart,
aramaic_stem_by_book, aramaic_data, aramaic_verb_data,
)
1. Overview¶
Biblical Aramaic shares its alphabet and much of its grammar with Biblical Hebrew but has its own distinctive verb system:
| Aramaic stem | Hebrew equivalent | Function |
|---|---|---|
| Peal | Qal | Base stem — simple action |
| Pael | Piel | Intensive/factitive |
| Haphel | Hiphil | Causative |
| Peil | Pual | Passive of Pael |
| Hithpeel | Hithpael | Reflexive/passive |
| Hithpaal | — | Reflexive of Pael |
| Aphel | — | Causative (alternative to Haphel) |
| Shaphel | — | Causative (rare, from שׁ prefix) |
print_aramaic_overview()
2. Verb Stem Distribution¶
The Peal is the base stem — it dominates, just as the Qal does in Hebrew. The Haphel and Pael together account for most of the rest.
print_aramaic_stem_profile() # both books
print_aramaic_stem_profile('Dan') # Daniel
print_aramaic_stem_profile('Ezr') # Ezra
from IPython.display import Image
path = aramaic_stem_chart()
print(f'Saved: {path}')
Image(str(path))
# Stem comparison: Daniel vs. Ezra
from IPython.display import Image
path = aramaic_stem_book_chart()
print(f'Saved: {path}')
Image(str(path))
3. Conjugation Distribution¶
Aramaic has the same major conjugation types as Hebrew:
- qatal (perfect) — completed action
- yiqtol (imperfect) — incomplete/ongoing action
- participle active — active participle (often used as present tense in later Aramaic)
- participle passive — passive participle
- infinitive construct — verbal noun
- imperative — command
print_aramaic_conj_profile() # both books
print_aramaic_conj_profile('Dan') # Daniel — narrative → active participle common
print_aramaic_conj_profile('Ezr') # Ezra — letter/decree → imperative common
from IPython.display import Image
path = aramaic_conj_chart()
print(f'Saved: {path}')
Image(str(path))
4. Stem × Conjugation Crosstab¶
Which conjugation types appear in which stems? This shows the morphological terrain a student of Biblical Aramaic will encounter.
print_aramaic_stem_conj() # all stems
# Just the Peal — the most important stem
print_aramaic_stem_conj('peal')
# Just the Haphel — causative
print_aramaic_stem_conj('haphel')
5. Most Frequent Aramaic Verb Roots¶
The top roots in Biblical Aramaic overlap significantly with high-frequency Hebrew roots, but the lexical core is smaller. Students in a BBA course need to recognise only a few dozen roots to read most of Daniel and Ezra.
print_aramaic_top_roots(25) # both books
print_aramaic_top_roots(15, 'Dan') # Daniel roots
print_aramaic_top_roots(15, 'Ezr') # Ezra roots
6. Token Distribution¶
Most Aramaic text is in Daniel; Ezra contains important decree and letter material.
print_aramaic_book_distribution()
# Stem crosstab as DataFrame
ct = aramaic_stem_by_book()
ct
Quick Reference¶
from bible_grammar.aramaic_profile import (
# Data
aramaic_data, # all Aramaic tokens
aramaic_verb_data, # Aramaic verb tokens only
aramaic_stem_profile, # stem distribution (book= optional)
aramaic_conj_profile, # conjugation distribution
aramaic_stem_conj, # stem × conjugation crosstab (stem= optional)
aramaic_top_roots, # top roots (n=, book= optional)
aramaic_book_distribution, # tokens per book
aramaic_stem_by_book, # stem counts per book (crosstab)
# Print
print_aramaic_overview,
print_aramaic_stem_profile,
print_aramaic_conj_profile,
print_aramaic_stem_conj,
print_aramaic_top_roots,
print_aramaic_book_distribution,
# Charts
aramaic_stem_chart,
aramaic_conj_chart,
aramaic_stem_book_chart,
)