Daf A Week · Techie Talmid · On-Ramp
Nedarim 59
Problem Statement: The Issur Nullification Bug Report
Alright, fellow data architects of the divine, let's dive into a perplexing logical challenge presented on Nedarim 59a. Imagine you're building a system to track the halakhic status of produce – whether it's permitted (PERMITTED), forbidden (FORBIDDEN), or conditionally permitted (CONDITIONAL_PERMITTED). Our current Issur (prohibition) management module is throwing some non-deterministic outputs, and frankly, it's a bit of a bug-bear.
The core problem statement, our "bug report," is this: When a forbidden item (let's call it ForbiddenComponent) interacts with a permitted environment, either by growing and generating new PermittedGrowth or by being mixed into a PermittedBulk, our system's NullificationEngine produces inconsistent results. Sometimes the ForbiddenComponent is completely absorbed and rendered PERMITTED (its issur status is nullified); other times, its issur propagates, infecting the entire PermittedBulk or PermittedGrowth. The current NullificationEngine lacks a unified, predictable algorithm, leading to unexpected FORBIDDEN states where PERMITTED was anticipated, and vice-versa. We need to refactor this NullificationEngine to handle Konamot (vows), Teruma (priestly tithe), and Ma'aser (tithe) with consistent logic.
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
Let's anchor our analysis to the source code:
- Nedarim 59a:1: "With regard to tithe, placement of the produce in a pile engenders the obligation... Therefore neutralization of the prohibition is not effected by planting it in the ground." (Initial
Ma'aserrule) - Nedarim 59a:2: "For one who says: This produce is konam upon me... it is prohibited to partake... of its replacements, or of anything that grows from it. If he says: This produce is konam for me, and for that reason I will not eat it... it is permitted for him to partake of its replacements or of anything that grows from it. This applies only with regard to an item whose seeds cease... However, with regard to an item whose seeds do not cease... it is prohibited for him to partake even of the growths of its growths." (The
KonamMishna, from 57a) - Nedarim 59a:3: "Rabbi Abba said: Konamot are different; since if he wishes to do so he can request that a halakhic authority dissolve the vows... their legal status is like that of an item that can become permitted, and its prohibition is not nullified by a majority." (
Davar SheYesh Lo Matirinconcept forKonam) - Nedarim 59a:4: "And isn’t there the case of teruma, in which if he wishes he can request that a halakhic authority dissolve the designation... and yet it is nullified by a majority?" (Challenge on
TerumaasDavar SheYesh Lo Matirin) - Nedarim 59a:6: "Rather, say that there is another distinction... Granted, in the case of konamot, there is a mitzva to request that a halakhic authority dissolve them... However, in the case of teruma, what mitzva is there to request that a halakhic authority dissolve its designation?" (Final distinction between
KonamandTerumaregardingDavar SheYesh Lo Matirin) - Nedarim 59a:7: "With regard to a litra of onions that one tithed, and then sowed, it is tithed according to the entire crop." (Rabbi Yoḥanan's
Ma'aseronion) - Nedarim 59a:10: "...you heard that Rabban Shimon ben Gamliel said that the prohibition of the primary, original part is not neutralized only in a case where he did not exert himself... However, in the case where he exerted himself... the prohibition of the original onions is neutralized by the majority." (The "exertion" factor)
- Nedarim 59a:11: "And isn’t there the case of one who sowed a litra of untithed tithe, where he exerts himself to sow it, and it is taught: And that original litra... one proportionally tithes for it from produce in a different place... The Gemara answers: It is different with regard to tithe, as the verse states: “You shall tithe all the produce of your seed...” permitted seeds... people typically sow. Forbidden seeds... people do not typically sow..." (Special
Ma'aserpenalty) - Nedarim 59a:12: "With regard to an onion of teruma that one planted, if its growths exceeded its principal, it is permitted." (Rabbi Yannai's
Terumaonion)
Flow Model: The Issur Resolution Decision Tree
Let's model the NullificationEngine as a decision tree. Our input is ForbiddenItem (type, initial_volume, context_event, new_growth_volume, mix_ratio). The output is the Status of the resulting AggregateProduce.
graph TD
A[Start: ForbiddenItem Input] --> B{Is it a Konam (Vow)?};
B -- Yes --> C{Vow Type: "Upon me" (General Prohib.)?};
C -- Yes --> D1[Output: FORBIDDEN (including replacements/growths)];
C -- No --> E{Vow Type: "Won't eat" (Limited Prohib.)?};
E -- Yes --> F{Seed Type: Does its seed cease?};
F -- Yes --> G1[Output: PRINCIPAL FORBIDDEN, GROWths PERMITTED];
F -- No --> D1;
B -- No --> H{Is it Davar SheYesh Lo Matirin (Can be dissolved)?};
H -- Yes --> I{Is there a Mitzva to dissolve it? (Konam-like)};
I -- Yes --> J1[Output: FORBIDDEN (No Bitul b'Rov)];
I -- No --> K{Is it Teruma?};
K -- Yes --> L{Is it Teruma in Priest's hand / Israelite heir?};
L -- Yes --> M1[Output: Bitul b'Rov (1:100) applies];
L -- No --> N1[Output: Bitul b'Rov (1:100) applies (if designated by mistake)];
K -- No --> O[Other Davar SheYesh Lo Matirin (e.g., mistaken Teruma designation)];
O --> M1;
H -- No --> P{Is it a physical transformation/growth scenario?};
P -- Yes --> Q{Did the owner "exert" effort (sow/plant)?};
Q -- Yes --> R{Is it Untithed Ma'aser?};
R -- Yes --> S1[Output: PRINCIPAL FORBIDDEN (Special Penalty: Ma'aser is different)];
R -- No --> T{Growths > Principal Volume?};
T -- Yes --> U1[Output: PERMITTED (Nullified by Majority/Growth)];
T -- No --> V1[Output: FORBIDDEN (Principal not nullified)];
Q -- No --> W{Growths > Principal Volume (e.g., Shevi'it onion sprouted naturally)?};
W -- Yes --> X1[Output: FORBIDDEN (Principal not nullified, even with majority)];
W -- No --> X1;
P -- No --> Y[Is it a simple mixture?];
Y -- Yes --> Z{Standard Bitul b'Rov Ratio Met? (e.g., 1:60 or 1:100 for Teruma)};
Z -- Yes --> M1;
Z -- No --> J1;
Word count: 295 words
Two Implementations: Algorithm A vs. Algorithm B
The Gemara presents us with two fundamentally different approaches to issur resolution, which we can conceptualize as "Algorithm A: The Dynamic Growth-Based Nullifier" and "Algorithm B: The State-Dependent, Contextual Blocker." These algorithms represent a shift from a purely volumetric, physical bitul model to one heavily influenced by issur metadata and user intent.
Algorithm A: The Dynamic Growth-Based Nullifier (Rabbi Yannai's "Simple Majority" Model)
Concept: This algorithm operates primarily on a physical, almost biological principle: if the new, permitted material significantly "outgrows" or "outnumbers" the original forbidden component, the issur is nullified. It's a resource-management model where the issur is diluted to the point of irrelevance.
Logic Gates & Data Flow:
- Input:
ForbiddenItem { type: Teruma_Onion, initial_volume: V_forbidden, action: PLANTED, new_growth_volume: V_growth } isGrowthScenarioCheck:true(since it's a planted onion that grows).VolumeComparisonEngine:if (V_growth > V_forbidden):- This is the critical condition. If the
new_growth_volumephysically exceeds theinitial_volumeof theTeruma_Onion, theNullificationFlagis set.
- This is the critical condition. If the
- Output:
if (NullificationFlag == true):AggregateProduce.status = PERMITTED(Nedarim 59a:12, "an onion of teruma that one planted, if its growths exceeded its principal, it is permitted.")else:AggregateProduce.status = FORBIDDEN(orCONDITIONAL_PERMITTEDif still within originalTerumaparameters, but generallyFORBIDDENif not nullified).
Metaphor: Think of this as a simple garbage collection routine in a system. If you have a tiny bit of corrupt data (ForbiddenItem) in a vast, self-healing data stream (PermittedGrowth), the new, clean data effectively overwrites or dilutes the corrupt data until it's no longer detectable or impactful. The system prioritizes the current, overwhelming state over the historical, minute state. It's a "local scope" rule, focusing on the immediate physical interaction. The Ran commentary on Nedarim 59a:2:1 notes that Rami bar Hama's objection is to Rabbi Yannai's view that "all growths, even if their prohibition is not caused by the ground, nullify the principal." This highlights Algorithm A's broader applicability in Rabbi Yannai's original conception.
Algorithm B: The State-Dependent, Contextual Blocker (The Gemara's Refined Model)
Concept: Algorithm B introduces layers of complexity, treating issur not just as a physical contaminant but as a state variable influenced by its type, origin, user_intent, and potential_for_dissolution. It's a sophisticated rules engine with multiple if/then/else branches and state flags that can override simpler bitul conditions.
Logic Gates & Data Flow:
- Input:
ForbiddenItem { type, initial_volume, context_event, new_growth_volume, mix_ratio, user_intent, owner_status } IssurTypeClassification:- Case 1:
type == Konam(Nedarim 59a:2-3)VowScopeAnalysis:if (vow_scope == "upon me"):PropagateIssur(replacements, growths). Output:FORBIDDEN.else if (vow_scope == "won't eat"):SeedPersistenceCheck:if (seed_ceases):Principal_FORBIDDEN, Growths_PERMITTED.else (seed_does_not_cease):PropagateIssur(replacements, growths). Output:FORBIDDEN.
DavarSheYeshLoMatirinFlag:true(Nedarim 59a:3). This generally blocksbitul b'rov.MitzvaToDissolveFlag:true(Nedarim 59a:6, Rabbi Natan's teaching). This flag is crucial forKonam'sDavar SheYesh Lo Matirinstatus, distinguishing it fromTeruma.
- Case 2:
type == Teruma(Nedarim 59a:4-6, 12)DavarSheYeshLoMatirinFlag:true(if designated by mistake, Nedarim 59a:4).MitzvaToDissolveFlag:false(Nedarim 59a:6). This is the key differentiator fromKonam.OwnerStatusCheck:if (owner_status == "Priest's_possession" || owner_status == "Israelite_heir"):DavarSheYeshLoMatirinFlageffectively becomesfalsefor practical purposes of dissolution.MixtureBitulRatioCheck:if (mix_ratio >= 1:100): Output:PERMITTED(Nedarim 59a:4, "into one hundred se'a... its prohibition is neutralized.").
else (owner_status == "Original_owner" & mistaken_designation):DavarSheYeshLoMatirinFlagistrue, butMitzvaToDissolveFlagisfalse, thereforebitul b'rovstill applies (Nedarim 59a:4, "And yet it is nullified by a majority").
GrowthExceedsPrincipalCheck(from Rabbi Yannai): IfPLANTEDandV_growth > V_forbidden, thenPERMITTED(Nedarim 59a:12). This shows a specific overlap where Algorithm A's logic is allowed to operate.
- Case 3:
type == Ma'aser(Nedarim 59a:1, 7, 11)ObligationOriginCheck:if (origin == "digun"):issuris not tied to the ground. (Nedarim 59a:1).ExertionCheck:if (context_event == "sown_by_human_exertion"): This typically leads to nullification by majority for other items (Nedarim 59a:10).MaaserSpecialPenaltyFlag:true(Nedarim 59a:11). This flag overrides theExertionCheck! "It is different with regard to tithe... Forbidden seeds... people do not typically sow..."- Output:
PRINCIPAL FORBIDDEN(must tithe proportionally from elsewhere, Nedarim 59a:11).
- Output:
InitialTithedOnionCheck(Rabbi Yoḥanan): Ifinitial_status == TITHEandPLANTED, the entire new crop isTITHE_OBLIGATED(Nedarim 59a:7). This implies the original permitted part isn't 'subtracted' from the new obligation.
- Case 1:
Metaphor: Algorithm B is like a highly regulated, object-oriented system with inheritance and polymorphism. Each issur type (Konam, Teruma, Ma'aser) is an "object" with specific properties (e.g., hasMitzvaToDissolve, seedCeases) and methods (e.g., PropagateIssur, ApplyBitul). The system doesn't just look at physical ratios; it interrogates the metadata of the ForbiddenItem and its lifecycle events (sown_by_human_exertion) to determine its behavior. It's a global-scope rule, where higher-level issur definitions and halakhic penalties can override local physical nullification logic. The Tosafot on Nedarim 59a:2:2 explains that for Konam where the seed doesn't cease, "the principal spreads into the growths and they are forbidden because of the principal, and the principal is important and not nullified." This highlights the issur as a persistent, non-dilutable attribute in certain contexts.
Word count: 785 words
Edge Cases
These inputs expose the subtle distinctions and hierarchy of rules within Algorithm B, breaking any naive "majority rule" assumption.
Edge Case 1: Teruma Onion, Mistakenly Designated, Planted, Growth Exceeds Principal
Input:
ForbiddenItem.type:TerumaForbiddenItem.initial_volume: 1 litraForbiddenItem.context_event:PLANTEDForbiddenItem.new_growth_volume: 10 litrot (far exceeds principal)ForbiddenItem.owner_status:Original_ownerForbiddenItem.designation_intent:Mistaken(meaning it can be dissolved by a hakham)
Naïve Algorithm A Expectation: Since
new_growth_volume(10 litrot) >initial_volume(1 litra), and it's aTerumaonion (Nedarim 59a:12), it should bePERMITTED.Algorithm B Expected Output:
PERMITTED.- Reasoning: This is where the Gemara’s refined logic for
Terumacomes into play. WhileTerumacan be dissolved by a hakham if designated by mistake (making itDavar SheYesh Lo Matirin), it lacks theMitzvaToDissolveFlagthatKonamotpossess (Nedarim 59a:6). Because it doesn't have thismitzva, itsDavar SheYesh Lo Matirinstatus doesn't blockbitulin the same wayKonamotdoes. Therefore, the simple "growths exceed principal" rule (Algorithm A, as stated by Rabbi Yannai on Nedarim 59a:12) is allowed to apply. The Rishonim (e.g., Shita Mekubetzet on Nedarim 59a:1, citing Ritvah) discuss howTerumadesignated in error can be nullified by majority, even though it's technically dissolvable. This scenario perfectly illustrates that not allDavar SheYesh Lo Matirinare created equal; theMitzvaToDissolveFlagis a crucial differentiator.
- Reasoning: This is where the Gemara’s refined logic for
Edge Case 2: Litra of Untithed Ma'aser, Accidentally Mixed into 100 Litra of Permitted Ma'aser (NOT SOWN)
Input:
ForbiddenItem.type:Untithed_Ma'aserForbiddenItem.initial_volume: 1 litraForbiddenItem.context_event:MIXED(notPLANTEDorSOWN)ForbiddenItem.mix_ratio: 1:100 (1 litra forbidden into 100 litrot permitted)ForbiddenItem.sown_by_human_exertion:false(no sowing occurred)
Naïve Algorithm A Expectation: Given a 1:100 ratio, this should be
PERMITTEDbybitul b'rov, similar toTerumain some contexts (Nedarim 59a:4). The specialMa'aserpenalty (Nedarim 59a:11) is specifically invoked when onesowsforbiddenMa'aser, which isn't the case here.Algorithm B Expected Output:
PERMITTED.- Reasoning: The
Ma'aserSpecialPenaltyFlag(Nedarim 59a:11) is only activated when one "sows" (zor'a) the untithedMa'aser. The Gemara explicitly says, "Forbidden seeds... people do not typically sow, but the Sages penalized one who sowed untithed seeds..." In this edge case, thecontext_eventisMIXED, notSOWN. Therefore, the special penalty (which prevents nullification by majority/growth) does not apply. Without that overridingstatevariable, the standardbitul b'rovrule for mixtures (e.g., 1:100, which applies toTerumaand other items that are notKonam-likeDavar SheYesh Lo Matirin) would apply, rendering the mixturePERMITTED. This highlights the extreme precision of theMa'aserpenalty's scope.
- Reasoning: The
Word count: 295 words
Refactor: Clarifying the Davar SheYesh Lo Matirin Interface
The current Davar SheYesh Lo Matirin (item that can become permitted) interface is overly broad, leading to inconsistent bitul behavior. We need to introduce a more granular DissolutionPolicy property.
Current (Implicit) Interface:
interface DavarSheYeshLoMatirin { canBeDissolved: boolean; }
This interface is ambiguous because Teruma and Konam both return true for canBeDissolved, yet behave differently.
Proposed Refactor:
Introduce a new enum DissolutionPolicy and modify the interface:
enum DissolutionPolicy {
NONE, // Cannot be dissolved (e.g., standard prohibited item)
OPTIONAL_NO_MITZVA, // Can be dissolved, but no religious imperative (e.g., Teruma designated by mistake)
OPTIONAL_WITH_MITZVA_TO_DISSOLVE // Can be dissolved, and there's a Mitzva to do so (e.g., Konamot)
}
interface ForbiddenItem {
// ... existing properties ...
dissolutionPolicy: DissolutionPolicy;
// ... new properties like 'seedPersistence' and 'sowingExertionFlag'
}
Minimal Change & Impact:
By replacing the simple canBeDissolved: boolean with dissolutionPolicy: DissolutionPolicy, we explicitly encode the nuanced distinction drawn by the Gemara (Nedarim 59a:6). This allows the NullificationEngine to cleanly branch its logic:
- If
dissolutionPolicy == OPTIONAL_WITH_MITZVA_TO_DISSOLVE(Konamot): Always blocksbitul b'rov. - If
dissolutionPolicy == OPTIONAL_NO_MITZVA(Teruma designated by mistake): Does NOT blockbitul b'rov; otherbitulrules (like 1:100 or growth exceeding principal) can apply. - If
dissolutionPolicy == NONE: Standardbitul b'rovrules apply (unless overridden by specific penalties likeMa'aserSpecialPenalty).
This single refactor clarifies the intent, makes the system's behavior predictable, and aligns our code with the Gemara's final, sophisticated understanding of Davar SheYesh Lo Matirin.
Word count: 198 words
Takeaway: The Issur as a Rich Data Type
What an incredible journey through the Issur resolution module! Our deep dive into Nedarim 59a reveals that in Halakha, a ForbiddenItem is far from a simple boolean isForbidden. Instead, it's a rich data type, an object with multiple properties and state variables: its type, origin, user_intent, seed_persistence, sowing_exertion_flag, and crucially, its dissolutionPolicy.
The Gemara's NullificationEngine is a testament to context-aware computing. It's not a naive, one-size-fits-all "majority rule" (Algorithm A). Rather, it's a sophisticated, multi-layered system (Algorithm B) that prioritizes metadata and intent over raw volumetric data in many cases. The Ma'aserSpecialPenalty is a hardcoded override, the Konam's MitzvaToDissolveFlag acts as a bitul blocker, and Teruma navigates a middle path.
This isn't just dry legal code; it's a profound system architecture. It teaches us that the issur isn't merely a physical contaminant to be diluted. It can be a persistent state tied to intent, a penalty for certain actions, or a property that can spread through generations of growth. The Sages, in their meticulous design, engineered a halakhic framework that respects the nuanced data of each mitzvah and human interaction, ensuring that the spiritual integrity of the issur is maintained or released with algorithmic precision. It's a beautifully complex system, and understanding its logic gates brings us closer to the divine programmer!
derekhlearning.com