Biblical Aramaic Nominal Morphology¶
Statistical analysis of the nominal (non-verbal) system in Biblical Aramaic. Data: MACULA Hebrew WLC — Daniel 2:4b–7:28 and Ezra 4:8–6:18; 7:12–26 (~7,550 tokens).
Aramaic nouns have three states:
| State | Function | Hebrew equivalent |
|---|---|---|
| Absolute | Free form | Hebrew absolute |
| Construct | Bound to following genitive | Hebrew construct |
| Determined | Definite — the emphatic state | Hebrew noun + article ה |
Key difference from Hebrew: Aramaic has an emphatic/determined state (using an aleph suffix א-) that marks definiteness. In contrast, Hebrew uses the separate prefix article ה. By the time of Biblical Aramaic (Imperial Aramaic), the emphatic state has often lost its definite force and become the default form.
This notebook covers:
- Overview of the Aramaic nominal system
- Noun state distribution (absolute/construct/determined)
- Noun gender and number
- Top Aramaic noun lemmas
- Pronoun types (pronominal suffixes, personal, demonstrative)
- Preposition frequency
- Daniel vs. Ezra comparison
import sys
sys.path.insert(0, '../../../src')
from bible_grammar.aramaic_nominal import (
aramaic_noun_data, aramaic_pron_data, aramaic_prep_data, aramaic_adj_data,
aramaic_noun_state_profile, aramaic_noun_gender_profile, aramaic_noun_number_profile,
aramaic_noun_gender_state, aramaic_noun_top_lemmas, aramaic_noun_state_by_book,
aramaic_pron_type_profile, aramaic_prep_frequency, aramaic_class_distribution,
print_aramaic_nominal_overview, print_aramaic_noun_state, print_aramaic_noun_gender,
print_aramaic_noun_top_lemmas, print_aramaic_noun_state_by_book,
print_aramaic_pron_profile, print_aramaic_prep_frequency,
aramaic_noun_state_chart, aramaic_noun_state_book_chart, aramaic_prep_chart,
)
1. Overview¶
Nouns are the largest single word class in Biblical Aramaic (~30% of tokens), followed closely by prepositions (~13%) and conjunctions (~10%).
print_aramaic_nominal_overview()
# All word classes
aramaic_class_distribution()
2. Noun State Distribution¶
The determined state (emphatic: king = מַלְכָּא) is the most common in Biblical Aramaic — this reflects the language's historical drift toward using the emphatic as the default form. In Daniel and Ezra, the absolute state signals indefiniteness ("a king").
| State | Suffix marker | Example |
|---|---|---|
| Absolute | (none) | מֶלֶךְ (a king) |
| Construct | vowel change | מַלְכֵּי (kings of) |
| Determined | א- | מַלְכָּא (the king) |
print_aramaic_noun_state()
from IPython.display import Image
path = aramaic_noun_state_chart()
print(f'Saved: {path}')
Image(str(path))
# Daniel vs. Ezra comparison
print_aramaic_noun_state_by_book()
from IPython.display import Image
path = aramaic_noun_state_book_chart()
print(f'Saved: {path}')
Image(str(path))
3. Noun Gender and Number¶
Aramaic gender works like Hebrew: masculine is the default; feminine is marked (typically ה- / א- in the absolute, תא- in the determined state).
The dual is rare and mostly limited to body parts and time expressions.
print_aramaic_noun_gender()
# Gender × state crosstab
ct = aramaic_noun_gender_state()
ct
4. Top Aramaic Noun Lemmas¶
The vocabulary is heavily concentrated: מֶלֶךְ (king) alone accounts for ~8% of all Aramaic noun tokens. This reflects the court-and-decree setting of Daniel and Ezra. Students who know the top 20 nouns can read most of the narrative.
print_aramaic_noun_top_lemmas(20)
# Daniel roots vs. Ezra roots
print_aramaic_noun_top_lemmas(12, 'Dan')
print_aramaic_noun_top_lemmas(12, 'Ezr')
5. Pronoun Types¶
Most pronoun tokens in Biblical Aramaic are pronominal suffixes attached to nouns, verbs, or prepositions (e.g., מַלְכּוּתָךְ = "your kingdom"). The class_='pron' tokens include both independent pronouns and attached suffixes as MACULA analyzes them.
print_aramaic_pron_profile()
# Raw pronoun data for exploration
prons = aramaic_pron_data()
# Personal pronouns
personal = prons[prons['type_'].str.lower() == 'personal'][['lemma','english','person','gender','number','book']]
personal.value_counts(['lemma','english','person','gender','number']).head(15)
6. Preposition Frequency¶
Aramaic prepositions mirror Hebrew: לְ (to/for), בְּ (in/with), מִן (from) are the three most common. Unlike Hebrew, Aramaic also uses קֳדָם (before/in the presence of) frequently in the court narrative.
print_aramaic_prep_frequency(12)
from IPython.display import Image
path = aramaic_prep_chart()
print(f'Saved: {path}')
Image(str(path))
Quick Reference¶
from bible_grammar.aramaic_nominal import (
# Data
aramaic_noun_data, # Aramaic nouns (book= optional)
aramaic_pron_data, # Aramaic pronouns
aramaic_prep_data, # Aramaic prepositions
aramaic_adj_data, # Aramaic adjectives
# Profiles
aramaic_noun_state_profile, # absolute/construct/determined
aramaic_noun_gender_profile, # masculine/feminine
aramaic_noun_number_profile, # singular/plural/dual
aramaic_noun_gender_state, # gender × state crosstab
aramaic_noun_top_lemmas, # top-n most frequent noun lemmas
aramaic_noun_state_by_book, # state counts: Daniel vs. Ezra
aramaic_pron_type_profile, # pronoun type distribution
aramaic_prep_frequency, # top prepositions by frequency
aramaic_class_distribution, # all word classes
# Print
print_aramaic_nominal_overview,
print_aramaic_noun_state,
print_aramaic_noun_gender,
print_aramaic_noun_top_lemmas,
print_aramaic_noun_state_by_book,
print_aramaic_pron_profile,
print_aramaic_prep_frequency,
# Charts
aramaic_noun_state_chart,
aramaic_noun_state_book_chart,
aramaic_prep_chart,
)