Yerushalmi Yomi · Techie Talmid · Standard
Jerusalem Talmud Nedarim 6:1:2-4:2
Oh, glorious day! We're diving into the intricate world of Nedarim (Vows) in the Jerusalem Talmud, specifically perek 6, mishnah 1, sugya 2 through 4. Get ready to witness the Talmudic sages as master systems architects, debugging and refactoring the rules of vows with the precision of seasoned coders!
Problem Statement – The "Bug Report" in the Sugya
Our central "bug report" in this segment of Nedarim revolves around defining the boundaries of culinary prohibitions enacted through vows. The core issue is ambiguity: when someone vows to abstain from a certain category of food preparation (like "cooked"), how granular do we get? Does the prohibition extend to similar but not identical methods? What constitutes the "essence" of a forbidden category, and where does the "variance" begin?
Think of it like this: a user reports a bug where a filter designed to block "images" is also blocking "GIFs." Is the system supposed to be that precise? Or should it understand the broader category? The Talmudic engineers are wrestling with similar questions, but with food, vows, and the sacred covenant between humanity and the Divine.
The mishnah and halakhah present a series of scenarios:
- Vowing against "cooked food": What about roasted or scalded food? Are these variations or entirely separate categories?
- Vowing against "dishes made in a pot": Does this extend to anything that could go into a pot, or only what is typically cooked in a pot?
- Vowing against "pickled," "scalded," or "roasted": The distinction between "from the X" and "anything X" becomes critical.
- Vowing against "fish": This leads to a fascinating deep dive into the taxonomy of fish and its preparations (salted, ground, fluid).
- Vowing against "milk": The transformation of milk into curd and then cheese introduces further complexity.
The "bug" is the potential for over- or under-applying vows based on differing interpretations of linguistic scope and culinary classification. The sages are building a robust logical framework, akin to a decision tree or a state machine, to handle these nuances. They're not just looking at the literal words but the underlying intent, common usage, and even the physical properties of the food items.
The challenge is to create a system that is both comprehensive and fair, respecting the gravity of a vow without imposing unintended burdens. It's a high-stakes debugging session where the "users" are individuals trying to live a life of piety, and the "developers" are the rabbinic authorities ensuring the system functions as intended.
Full Experience in the App
Listen. Chat. Go deeper.
Audio playback, interactive chevruta, Hebrew tools, and every daily learning track — only in Derekh Learning.
Text Snapshot
Here are the key lines that form the backbone of our analysis, with anchors for easy reference:
- Mishnah 6:1:2: “One who makes a vow to abstain from cooked food is permitted roasted and scalded food.” (This is our starting point, setting up the core ambiguity.)
- Mishnah 6:1:2: “If one said, a qônām that I will not taste a cooked dish, he is forbidden fine dishes and permitted thick ones.” (Introduces a distinction within "cooked dishes".)
- Halakhah 6:1:3: “Rebbi Joḥanan said, in matters of vows one follows common usage. Rebbi Joshia said, in matters of vows one follows biblical usage.” (This is the fundamental algorithmic divergence we'll explore!)
- Halakhah 6:1:5: “Rebbi Ḥiyya bar Abba said, Rebbi Joḥanan ate bake-meats and said, I did not taste food on that day.” (An example of R. Yochanan's practical application.)
- Mishnah 6:2:1: “If somebody makes a vow to forbid himself anything made in a pot, he is forbidden only what is made in its heat.” (Another specific vow category.)
- Mishnah 6:2:1: “If he said, a qônām that I shall not taste anything going into the pot, he is forbidden anything that may be cooked in any pot.” (Contrast with the previous Mishnah, highlighting scope.)
- Mishnah 6:2:3: “‘From the salted’ he is forbidden only salted fish. ‘That I shall not taste anything salted’, he is forbidden everything salted.” (Demonstrates the "from X" vs. "anything X" pattern.)
- Mishnah 6:2:4: “‘That I shall not taste fish, fishes’, he is forbidden them either large or small, either salted or unsalted, either raw or cooked. But he is permitted fish cake and fish fluid.” (Granularity of prohibition on fish.)
- Mishnah 6:3:1: “If somebody vows not to drink milk, he is permitted curd but Rebbi Yose forbids.” (A clear point of contention between sages.)
Flow Model – The Decision Tree Architecture
Let's visualize the logic embedded within these sugyot as a decision tree. This is the core architecture the Sages are building to parse vows.
- Root Node: Vow Interpretation
- Input: Vow concerning a specific food category (e.g., "cooked," "fish," "milk").
- Decision Point 1: Scope of the Vow
- Branch A: Specific Formulation (e.g., "from the salted")
- Sub-Decision 1.1: Is the item a direct instance of the specified category?
- Yes: Forbidden. (e.g., salted fish is forbidden if vowed "from the salted").
- No: Permitted. (e.g., raw fish is permitted if vowed "from the salted").
- Sub-Decision 1.1: Is the item a direct instance of the specified category?
- Branch B: General Formulation (e.g., "anything salted")
- Sub-Decision 1.2: Is the item processed in any way by the specified method?
- Yes: Forbidden. (e.g., raw fish is forbidden if vowed "anything salted" because it's not salted).
- No: Permitted. (This branch is less common for general prohibitions, as the intent is usually broad).
- Sub-Decision 1.2: Is the item processed in any way by the specified method?
- Branch C: Broad Category Vow (e.g., "cooked food")
- Sub-Decision 1.3: What is the governing principle for interpreting this broad category?
- Rule Set 1: Common Usage (R. Johanan's Algorithm)
- Sub-Decision 1.3.1: Is the item commonly understood as falling under the broad category in everyday parlance?
- Yes: Forbidden.
- No: Permitted.
- Example: If "cooked food" means anything prepared by heat that's not raw, then roasted and scalded might be permitted if not typically called "cooked" in common speech, even if they involve heat.
- Sub-Decision 1.3.1: Is the item commonly understood as falling under the broad category in everyday parlance?
- Rule Set 2: Biblical Usage (R. Joshia's Algorithm)
- Sub-Decision 1.3.2: Is the item described or implied by the biblical term for the broad category?
- Yes: Forbidden.
- No: Permitted.
- Example: If "cooked food" refers to the biblical definition, and biblical texts (like 2 Chron 35:13 regarding the pesach) equate roasting with cooking, then roasted food would be forbidden.
- Sub-Decision 1.3.2: Is the item described or implied by the biblical term for the broad category?
- Rule Set 1: Common Usage (R. Johanan's Algorithm)
- Sub-Decision 1.3: What is the governing principle for interpreting this broad category?
- Branch A: Specific Formulation (e.g., "from the salted")
- Decision Point 2: Specific Food Item Analysis (Applied after Decision Point 1)
- Input: The food item in question (e.g., fine dishes, thick dishes, soft boiled egg, fish cake, curd).
- Sub-Decision 2.1: Does this item fit the determined scope of the vow?
- Yes: Forbidden.
- No: Permitted.
- Decision Point 3: Nuance and Exception Handling
- Input: Specific item details, expert opinions, or contextual clues.
- Sub-Decision 3.1: Are there any specific rules, exceptions, or rabbinic interpretations that modify the general rule?
- Yes: Apply modification. (e.g., Rebbi Yose's view on curd).
- No: Adhere to general rule.
This decision tree highlights the core tension: whether to use a flexible, context-dependent "common usage" parsing engine or a more rigid, scriptural "biblical usage" parser. The sugya is essentially debugging the parameters for these engines.
Two Implementations: Algorithm A (R. Johanan) vs. Algorithm B (R. Joshia)
The heart of this sugya's debate lies in the differing approaches of R. Johanan and R. Joshia to interpreting vows. We can model these as two distinct algorithms for processing vow-related prohibitions.
Algorithm A: R. Johanan's "Common Usage" Parser
R. Johanan's approach is akin to a natural language processing (NLP) model that prioritizes lingua franca and real-world context. It's dynamic, adaptive, and relies heavily on how people actually speak and understand terms in their daily lives.
Core Principle: In matters of vows, we follow common usage (masoret ha-dibbur). This means the intent and scope of a vow are determined by how the terms are generally understood and used in the vernacular.
Data Model: The "database" for this algorithm consists of observed linguistic patterns and societal norms. It's less about strict definitions and more about common associations.
Processing Logic:
- Input Vow: Receive the vow string (e.g., "I vow not to eat cooked food").
- Identify Forbidden Category: Extract the core forbidden term (e.g., "cooked food").
- Query Common Usage Lexicon: Access a conceptual lexicon of how "cooked food" is commonly understood.
- Key Question: What does the average person mean when they say "cooked food"? What is excluded from this common understanding?
- Apply to Specific Items: For any food item in question, check if it falls within the common understanding of the forbidden category.
- Example: "Cooked Food"
- Common usage often distinguishes between direct cooking (boiling, simmering) and other heat applications (roasting, scalding).
- Mishnah 6:1:2 states: "One who makes a vow to abstain from cooked food is permitted roasted and scalded food."
- R. Johanan's Interpretation: If common usage differentiates "cooked" from "roasted" and "scalded," then a vow against "cooked" does not encompass the latter two. This is because, in vernacular, "cooked" often implies a specific method (like boiling), whereas roasted and scalded are distinct enough to be recognized as separate.
- Output for Roasted/Scalded: Permitted.
- Example: "Fine Dishes" vs. "Thick Dishes"
- Mishnah 6:1:2 states: "If one said, a qônām that I will not taste a cooked dish, he is forbidden fine dishes and permitted thick ones."
- R. Johanan's Interpretation: The distinction between "fine dishes" (moist, eaten with bread) and "thick dishes" (dry, eaten without bread) is a recognized culinary distinction. If the vow is against "cooked dishes," and this distinction is part of how people categorize cooked items, then the vow applies to the "fine" (moister, more typically "cooked") ones and not the "thick" (drier, less typically "cooked" in the common sense). The Penei Moshe explains fine dishes are "those which contain visible moisture" and thick ones are those "If there is no more visible moisture and it can be eaten without bread." This reflects a tangible, observable difference in common perception.
- Output for Fine Dishes: Forbidden.
- Output for Thick Dishes: Permitted.
- Example: "Food" vs. "Water and Salt"
- Halakhah 6:1:5 records R. Johanan eating "bake-meats" and saying, "I did not taste food on that day."
- R. Johanan's Interpretation: If someone vows "not to eat food," common usage typically excludes things like water and salt, which are often considered accompaniments or necessities rather than "food" in the primary sense. This aligns with the Mishnah in Erubin 3:1 (20d) which permits water and salt.
- Output for Water/Salt: Permitted.
- Example: "Cooked Food"
Strengths:
- Flexibility: Adapts to evolving language and culinary practices.
- Practicality: Aligns with how most people would interpret their vows.
- Reduces Accidental Transgression: Less likely to trap someone in a vow they didn't intend.
Weaknesses:
- Ambiguity: Common usage can be subjective and vary by region or social group.
- Requires Expertise: Determining "common usage" might require an understanding of broader cultural contexts.
Algorithm B: R. Joshia's "Biblical Usage" Parser
R. Joshia's approach is more akin to a formal language parser, strictly adhering to the foundational texts – the Torah and its direct interpretations. It's precise, principled, and seeks to ground everything in the original divine utterance.
Core Principle: In matters of vows, we follow biblical usage (masoret ha-mikra). This means the intent and scope of a vow are determined by the meanings of terms as found in the Torah and biblical narratives.
Data Model: The "database" for this algorithm consists of biblical verses, their explicit meanings, and halakhic derivations from those verses.
Processing Logic:
- Input Vow: Receive the vow string (e.g., "I vow not to eat cooked food").
- Identify Forbidden Category: Extract the core forbidden term (e.g., "cooked food").
- Query Biblical Lexicon/Evidence: Search for biblical occurrences and implications of the term.
- Key Question: How is this term used in the Torah? What does a kal va-chomer (a fortiori) argument based on biblical texts suggest?
- Apply to Specific Items: For any food item, check if it can be linked, even indirectly or through logical extension, to a biblical definition or principle.
- Example: "Cooked Food"
- The Halakhah (6:1:3) cites 2 Chronicles 35:13: "They cooked the pesach in the fire as is the rule," and links it to Exodus 12:9's description of roasting ("roasted in fire").
- R. Joshia's Interpretation: Since the Bible uses "cooked" (bishlu) in relation to roasting the pesach, and roasting is a form of cooking, then a vow against "cooked food" must include roasted food. The biblical text itself provides the precedent for equating these. Similarly, Nazir 6:11 (6:9:1) uses shaluk (scalded) as synonymous with cooked in the context of the nazir's ram.
- Output for Roasted/Scalded: Forbidden. (This directly contradicts the Mishnah's initial statement, highlighting R. Joshia's stricter interpretation).
- Example: "Fine Dishes" vs. "Thick Dishes" (under a vow of "cooked dish")
- Mishnah 6:1:2 states: "If one said, a qônām that I will not taste a cooked dish, he is forbidden fine dishes and permitted thick ones."
- R. Joshia's Interpretation: While the Mishnah itself makes this distinction (and R. Johanan would follow it based on common usage of "dish"), R. Joshia's focus on biblical usage would ask if the Bible makes such a fine distinction within the term "cooked dish." If not, and if "cooked dish" has a broader biblical scope, then the Mishnah's allowance of "thick ones" might be challenged under a strictly biblical framework. However, the sugya presents R. Joshia agreeing with the Mishnah's allowance of thick dishes in matters of vows (Halakhah 6:1:3, footnote 11), suggesting his strictness is within the framework of interpreting biblical terms, not necessarily overriding clear Mishnah rulings. The footnote clarifies: "He requires that both in biblical Hebrew and in the vernacular the terms should denote different things." This implies R. Joshia might require a clear biblical basis for both the forbidden and permitted aspects if they are to be distinguished.
- Output for Fine Dishes: Forbidden (as per Mishnah).
- Output for Thick Dishes: Permitted (as per Mishnah, but R. Joshia's reasoning for why the Mishnah is correct might differ).
- Example: "Food"
- Halakhah 6:1:5 discusses the word "food" from Genesis 45:23.
- R. Joshia's Interpretation: The verse lists "grain, bread, and food." R. Aha bar Ulla derives from this that "food" (mazon) can encompass a broad category, potentially everything consumed. If the vow is "not to eat food" (mazon), R. Joshia would lean towards a broader interpretation of mazon based on its biblical usage, potentially including items that R. Johanan might exclude based on common usage (like water and salt, if they could be argued to be mazon biblically). However, as noted, the sugya shows R. Johanan permitting water/salt, suggesting even he adheres to common usage not to include them as food. R. Joshia's point is more about the principle of grounding in biblical definition.
- Example: "Cooked Food"
Strengths:
- Consistency: Provides a stable, unchanging standard.
- Authority: Derives rulings from the highest source of Jewish law.
- Clarity of Principle: Establishes clear rules based on textual evidence.
Weaknesses:
- Rigidity: May not account for nuances of language or evolving practices.
- Potential for Stringency: Can lead to prohibitions that feel overly restrictive or unintended.
- Requires Deep Textual Analysis: Interpretation relies on careful exegesis and deduction from scripture.
The Core Conflict: The sugya presents these two algorithms as the primary interpretive engines for vows. R. Johanan's is like a flexible API that interfaces with real-world data (common usage), while R. Joshia's is a more robust, albeit less flexible, compiler that works directly from the source code (Torah and its direct implications). The tension between these two approaches is what drives the discussion and allows for the nuanced rulings that follow. The mishnah itself often reflects a synthesis or a specific ruling, and the halakhah then debates which algorithm best explains or justifies it.
Edge Cases – Inputs That Break Naïve Logic
To truly understand the robustness of the Talmudic system, let's test it with inputs that would likely cause a simpler, rule-based system (a "naïve logic" parser) to crash or produce incorrect outputs.
Edge Case 1: The "Ambiguous Intermediate" Food Item
- Input: A vow to abstain from "cooked food." The item in question is "baked bread."
- Naïve Logic Problem: Is bread "cooked"? In a very broad sense, yes, baking is a form of cooking. However, in culinary taxonomy, "bread" is often a distinct category from "cooked dishes" like stews or boiled vegetables. A simple keyword search for "cooked" would flag it.
- Talmudic Analysis:
- R. Johanan (Common Usage): Would likely permit baked bread under a vow of "cooked food." Why? Because in common parlance, when someone says they are avoiding "cooked food," they usually mean dishes prepared by boiling, stewing, or simmering. Bread, despite being baked, is a staple with its own classification. People don't typically lump their daily bread in with a stew when they talk about avoiding "cooked food." The Penei Moshe (6:1:1:2) notes that tsli (roasted) and shaluk (scalded) are "not included in mevushal (cooked)." This implies a semantic separation based on common understanding.
- R. Joshia (Biblical Usage): This is more nuanced. While the pesach was roasted (which R. Joshia might consider "cooked" biblically), the biblical term for bread (lechem) is distinct. If the vow is strictly "cooked food," and "bread" is a distinct biblical category, R. Joshia might also permit it, arguing the vow didn't explicitly include "bread." However, if the intent of the vow was to avoid all heat-processed staples, his approach might lean towards stringency if a biblical basis for a broad "heat-processed grain" category could be found. But generally, the explicit distinction between lechem and other cooked items in scripture would likely lead him to permit it too, as the vow specified "cooked," not "baked" or "bread."
- Expected Output (Talmudic System): Permitted. The distinction between "cooked dishes" and "baked bread" is significant enough in both common and, to some extent, biblical understanding to differentiate them.
Edge Case 2: The "Category within a Category" Slippage
- Input: A vow to abstain from "salted fish." The item in question is "fish fluid" (fish brine, muries).
- Naïve Logic Problem: Fish fluid is derived from salted fish, but it is not itself "salted fish." A simple rule like "if it contains fish and is salted, it's forbidden" would fail. A system that only looks for the exact string "salted fish" would permit it.
- Talmudic Analysis:
- Mishnah 6:2:4: "‘That I shall not taste fish, fishes’, he is forbidden them either large or small, either salted or unsalted, either raw or cooked. But he is permitted fish cake and fish fluid."
- Mishnah 6:2:4 (second part): "If somebody vows not to eat anchovy [a type of small salted fish] he is forbidden fish cake and permitted fish fluid and brine."
- Analysis: The Mishnah explicitly creates distinctions. If the vow is specifically "salted fish," the Mishnah seems to imply that "fish fluid" is not "salted fish" itself. It's a product of fish, potentially processed with salt, but not the solid "fish" that was salted.
- R. Johanan (Common Usage): Would likely follow the Mishnah's distinction. Common usage would differentiate between the preserved fish itself and the liquid extracted from it. They are distinct items with different textures and uses.
- R. Joshia (Biblical Usage): This is where it gets interesting. If the vow is "salted fish," R. Joshia would look for biblical parallels. The Bible doesn't detail "fish fluid." However, if the purpose of the vow was to avoid preserved fish, and the fluid is a direct, inseparable byproduct of that preservation process, R. Joshia might argue for a broader interpretation based on the essence of preservation. But the Mishnah's explicit allowance for "fish fluid" under a vow of "fish" (let alone "salted fish") suggests that even R. Joshia would likely concede to the Mishnah's ruling here, perhaps by defining "salted fish" as the solid mass.
- The key is the Mishnah's explicit allowance: The Mishnah states that under a vow of "fish," one is permitted fish fluid. This implies that "fish fluid" is not considered the same as "fish" in its primary form. If "fish fluid" is permitted even under a general vow of "fish," it would certainly be permitted under the more specific vow of "salted fish." The Halakhah further clarifies: "If somebody vows not to eat anchovy [a specific type of salted fish] he is forbidden fish cake and permitted fish fluid and brine." This is critical. If even a specific salted fish vow permits fish fluid, then a general "salted fish" vow would also permit it.
- Expected Output (Talmudic System): Permitted. The Talmudic system, particularly through the specific rulings in Mishnah 6:2:4, differentiates between the salted fish itself and its extracted fluid. The fluid is considered a distinct entity, not the "salted fish" that was vowed against.
Refactor: One Minimal Change for Clarity
The most significant point of divergence and potential confusion lies in the interpretive frameworks of R. Johanan and R. Joshia. To clarify this fundamental difference and make the system's operation more transparent, we can introduce a simple refactoring.
Current State (Implicit): The sugya presents the Mishnah's ruling first, and then the halakhah discusses R. Johanan's and R. Joshia's differing explanations or justifications for it. This can make it seem like they are debating whether the Mishnah is correct, when they are often debating why it is correct or how it applies in related scenarios.
Refactor Proposal: Explicitly label the interpretive framework being used for each ruling or explanation.
Minimal Change: Introduce a clear "Engine:" tag before each major interpretation or ruling that relies on one of the two frameworks.
Example of Refactored Text Snippet (Illustrative):
Mishnah 6:1:2: “One who makes a vow to abstain from cooked food is permitted roasted and scalded food.”
Halakhah 6:1:3:
- Interpretation Engine: R. Johanan (Common Usage)
- "Rebbi Joḥanan said, in matters of vows one follows common usage."
- Application: This explains why roasted and scalded are permitted under "cooked food" – common usage differentiates them. This also explains why water and salt are permitted under "food" – common usage distinguishes them.
- Interpretation Engine: R. Joshia (Biblical Usage)
- "Rebbi Joshia said, in matters of vows one follows biblical usage."
- Application: This explains why roasted is forbidden under "cooked food" – biblical evidence (like 2 Chron 35:13) equates roasting with cooking.
- Resolution: The sugya then reconciles this by noting R. Joshia agrees with the Mishnah's allowance of roasted/scalded food in the context of vows, implying that while his principle is biblical usage, the application within vows must also account for established halakhic frameworks and the Mishnah's ruling, possibly by requiring a clear biblical prohibition for both the forbidden and permitted items if a distinction is to be made. (This reconciliation is complex but the tag helps highlight the distinct starting points).
Benefit of Refactor:
This "tagging" approach makes the underlying logic of the Talmudic discourse immediately apparent. It's like adding comments to code:
# Engine: R. Johanan (Common Usage)
def interpret_vow_common_usage(vow_term):
# ... logic based on vernacular understanding ...
return interpretation
# Engine: R. Joshia (Biblical Usage)
def interpret_vow_biblical_usage(vow_term):
# ... logic based on scriptural evidence and derivation ...
return interpretation
# Mishnah ruling:
# ... ruling details ...
# Halakhah explanation for Mishnah ruling:
# If R. Johanan's view is presented:
interpretation_r_yochanan = interpret_vow_common_usage("cooked food")
# If R. Joshia's view is presented:
interpretation_r_josha = interpret_vow_biblical_usage("cooked food")
This minimal change transforms the presentation from a narrative of debate to a clear representation of different processing engines being applied to the same input (the vow). It enhances readability and understanding of the system's architecture without altering the core logic.
Takeaway
This segment of Nedarim provides a fascinating case study in how rabbinic thought constructs detailed legal and ethical systems. We see the sages acting as expert "system architects," grappling with the ambiguity inherent in language and human behavior.
The core takeaway is the dual interpretative engine for vows: one based on the fluid, dynamic data of common usage (R. Johanan), and the other on the stable, authoritative source code of biblical usage (R. Joshia). These aren't just differing opinions; they represent fundamentally different approaches to parsing and executing the "code" of a vow.
- R. Johanan's engine is like a modern API that's constantly updated with real-world linguistic data. It's flexible, practical, and aims to align with how people naturally communicate and understand.
- R. Joshia's engine is like a compiler that works from a fixed, foundational library. It prioritizes consistency and authority, grounding rulings in the ultimate source.
The Talmud doesn't necessarily declare one engine "superior" but shows how both contribute to the richness and complexity of Jewish law. The mishnah often presents a ruling, and the halakhah then uses these engines to explain, justify, or extend that ruling. This process reveals a sophisticated system for handling edge cases, resolving ambiguities, and ensuring that vows, while binding, are interpreted in a way that is both reverent and practical. It's a masterclass in conditional logic, scope definition, and the art of debugging legal frameworks.
derekhlearning.com