Sternefeld (1998): Reciprocity and Cumulative Predication #
@cite{sternefeld-1998}
Natural Language Semantics 6(3): 303–337. doi:10.1023/A:1008352502939.
@cite{sternefeld-1998} extends @cite{langendoen-1978}'s
reciprocity-as-cumulativity insight into a fully compositional theory.
Distinct readings of plural and reciprocal sentences arise from
different placements of the pluralization operators (* and **) at
Logical Form. The reciprocal NP itself denotes "the others", with the
non-identity statement injected into the LF as semantic glue.
Headline analysis (paper §3, eq 26b) #
Sternefeld's WR analysis: ⟨A, A⟩ ∈ **λxy[R(x, y) ∧ x ≠ y]. The
distinctness condition x ≠ y is inside the **'s relation
argument — NOT a separate asserted clause as some readings of the
literature suggest.
In bivalent semantics this is structurally identical to
@cite{beck-2001}'s eq 120 (**(λxλy.[R(x,y) ∧ @(x ≠ y)])(A,A)). The
two analyses agree on the bivalent predicate — Beck2001.weaklyReciprocal
— and diverge only on:
- Status of distinctness: Sternefeld asserts; Beck presupposes
(
@). Visible only in trivalent semantics (truth-value gap when R holds with x = y). - Status of SR: @cite{sternefeld-1998} §3.5 argues SR is expressible in his framework but defends in §3.6 (the Geach-Kaplan sentence) that SR is "probably a special case of WR" plus only-focus on the non-identity statement. @cite{beck-2001} takes SR as a basic reading.
**operator shape: @cite{sternefeld-1998} eq 5 uses @cite{krifka-1989}'s closure form (smallest relation closed under⟨a,b⟩+⟨c,d⟩ → ⟨a∪c, b∪d⟩); @cite{beck-sauerland-2000} use bidirectional coverage ((∀a∈x. ∃b∈y. R(a,b)) ∧ (∀b∈y. ∃a∈x. R(a,b))). Equivalent on Quine-innovation domains where individuals are identified with singletons.
What is formalized #
| Paper § | Topic | Lean encoding |
|---|---|---|
| §2 eq 5 | ** operator (@cite{krifka-1989} closure form) | sternefeldStarStar (inductive) |
| §2.4 eq 12 | WD analysis (Scha 1981 cumulative) | (deferred) |
| §3 eq 26b | WR analysis (distinctness inside relation) | sternefeldWR |
| §3 eq 25b | Langendoen-style WR (existence-witnessed) | langendoenWR |
| §3.5 eq 48b | SR expressed as iterated * distribution | sternefeldSR_iff_stronglyReciprocal |
The ** closure-form ↔ bidirectional-coverage equivalence is proved
in the easy direction (sternefeldStarStar_implies_cumulative).
The reverse direction is a substantial inductive argument that would
properly belong in Theories/Semantics/Plurality/Cumulativity.lean as
substrate justification for treating the two ** formulations as
interchangeable; not in this study file.
Out of scope #
- §2.5 Plural Predication at LF (Augmented Logical Forms with
freely-inserted
*operators) — purely representational; would require Tree.lean syntactic-tree machinery. - §3.1 Three-place relations (
***operator, paper eq 29) — small extension of**; substrate-deferred. - §3.2–3.3 dependent plurals + Heim's inner/outer indices — would require inner/outer-index distinction substrate.
- §3.4 LF-movement crossover constraint — syntax, not semantics.
- §3.6 Geach-Kaplan sentence with @cite{rooth-1985} focus — would require Focus substrate; the SR-derivation step is recorded in prose but not as a Lean theorem.
- §4.1–4.2 @cite{schwarzschild-1996} covers as pragmatic supplement —
substrate exists in
Plurality.Cover; the closure-of-**↔ Schwarzschild-PPart(PCov) reduction is a separate effort.
Connection to @cite{beck-2001} and @cite{haug-dalrymple-2020} #
@cite{beck-2001} cites Sternefeld 1998 as the immediate predecessor
and at one point characterises Sternefeld's analysis as bare-**(R)(A,A)
(i.e., without distinctness in the relation). Reading Sternefeld 1998
directly: bare **(R)(A,A) does NOT appear in his analysis; his
actual eq 26b has distinctness inside the relation. The
Beck-vs-Sternefeld difference is therefore presupposition-vs-assertion
of the distinctness clause, not structural placement.
@cite{haug-dalrymple-2020} consumes the same ** machinery via the
PPCDRT bridge groupIdentityCond_iff_cumulative_eq. The three-paper
convergence on **-cumulation as the heart of reciprocity is the
linglib interconnection-density payoff: Sternefeld's WR ↔ Beck's
eq 120 ↔ H&D's group identity all factor through
Plurality.Cumulativity.Cumulative.
Sternefeld eq 5 / @cite{krifka-1989}: the smallest relation
Q over Finset α × Finset α such that R ⊆ Q (lifted to
singletons) and Q is closed under ⟨a,b⟩ + ⟨c,d⟩ → ⟨a∪c, b∪d⟩.
On Quine-innovation domains, this is equivalent to
@cite{beck-sauerland-2000}'s bidirectional-coverage Cumulative
— see sternefeldStarStar_implies_cumulative for the easy
direction. The reverse direction holds on nonempty pluralities
but the inductive proof is non-trivial; substrate-deferred.
- base {α : Type u_1} [DecidableEq α] {R : α → α → Prop} {a b : α} (h : R a b) : sternefeldStarStar R {a} {b}
- union {α : Type u_1} [DecidableEq α] {R : α → α → Prop} {a b c d : Finset α} (hab : sternefeldStarStar R a b) (hcd : sternefeldStarStar R c d) : sternefeldStarStar R (a ∪ c) (b ∪ d)
Instances For
Sternefeld closure form ** entails @cite{beck-sauerland-2000}
bidirectional coverage (the easy direction of the equivalence
sternefeldStarStar R x y ↔ Cumulative R x y).
Proof: induction on the closure derivation. Base case
⟨{a},{b}⟩ from R a b: both quantifiers reduce to the witness
pair. Union case: bidirectional coverage of ⟨a∪c, b∪d⟩ follows
from coverage of ⟨a,b⟩ and ⟨c,d⟩ by case-splitting on the
union membership.
Sternefeld 1998 eq 26b: WR truth conditions are
⟨A, A⟩ ∈ **λxy[R(x, y) ∧ x ≠ y]. The distinctness clause is
INSIDE the **'s relation argument, NOT a separate asserted
clause.
Encoding choice: we use @cite{beck-sauerland-2000}'s bidirectional
coverage Cumulative for ** (see
sternefeldStarStar_implies_cumulative for the connection to
Sternefeld's closure-form **).
In bivalent semantics this is structurally identical to
Beck2001.weaklyReciprocal (and to Beck eq 120). The two analyses
diverge only on the trivalent assertion-vs-presupposition status
of x ≠ y (Sternefeld asserts; @cite{beck-2001} eq 120 presupposes
via @).
Equations
- Sternefeld1998.sternefeldWR A R = Semantics.Plurality.Cumulativity.Cumulative (fun (x y : α) => R x y ∧ x ≠ y) A A
Instances For
Equations
- Sternefeld1998.sternefeldWR.instDecidable A R = id inferInstance
Sternefeld 1998 ↔ Beck 2001 (bivalent collapse): in bivalent encoding, the two reciprocity analyses produce identical predicates. The cumulation-with-distinctness shape is the common ground of both papers; they only diverge at the trivalent (presupposition projection) layer.
@cite{langendoen-1978} WR (paper eq 25b): for each x ∈ A,
there are y, z ∈ A with x ≠ y, x ≠ z, xRy, zRx. This is
the existence-witnessed form Sternefeld attributes to Langendoen.
Sternefeld notes (paper p. 316) that this form does not entail his
eq 26b for non-D-based relations; in particular, in the
"problematic situation" f(R) = {⟨⟨a,b⟩, c⟩, ⟨c, a⟩, ⟨c, b⟩},
eq 25b cannot apply but eq 26b is still true. For D-based
relations on Quine-innovation domains, the two coincide and both
reduce to Beck2001.weaklyReciprocal.
Equations
- Sternefeld1998.langendoenWR A R = ∀ x ∈ A, ∃ y ∈ A, ∃ z ∈ A, x ≠ y ∧ x ≠ z ∧ R x y ∧ R z x
Instances For
Equations
- Sternefeld1998.langendoenWR.instDecidable A R = id inferInstance
For symmetric, distinctness-bearing R, @cite{langendoen-1978} WR
entails Beck2001.weaklyReciprocal: the existence-witnesses on
each side are the y and z of the Langendoen formula.
Sternefeld §3.5 eq 48b (SR via iterated distribution):
A ∈ *λx[{y: y ∈ A ∧ y ≠ x} ∈ *λy.R(x, y)]. The outer *
distributes over A; the inner * quantifies universally over
{y ∈ A : y ≠ x}. Assuming R is D-based (applies only to atoms),
this unfolds to ∀x ∈ A. ∀y ∈ A. y ≠ x → R(x,y) — exactly
Beck2001.stronglyReciprocal.
Sternefeld's point (paper §3.5–3.6): SR is expressible in his framework but is not a basic reading; it falls out of more general WR + focus mechanisms (the Geach-Kaplan analysis, paper §3.6). This contrasts with @cite{beck-2001}, who takes SR as a basic reading.
Sternefeld 1998 ↔ @cite{beck-2001} ↔ @cite{haug-dalrymple-2020}
(bivalent): chain sternefeldWR → Cumulative (via the
weaklyReciprocal bridge) — the meeting point of all three
analyses at the cumulation substrate.
The three-paper convergence makes
Plurality.Cumulativity.Cumulative the substrate consumed by
all three Studies files; the implementation choice (BS form
vs Krifka closure form) is invisible from the consumer side
modulo the easy-direction equivalence
sternefeldStarStar_implies_cumulative.