Composition Rules for Layered ⟨A, N⟩ Propositions #
@cite{potts-2005} @cite{anderbois-brasoveanu-henderson-2015} @cite{martinez-vera-2026}
Two-layered propositions ⟨at-issue, not-at-issue⟩ admit three canonical composition rules. The at-issue layer addresses the question under discussion and is challengeable by direct denial; the not-at-issue layer projects past negation and questions, hosting presuppositions, conventional implicatures, and evidential meanings.
The three rules formalised here are @cite{martinez-vera-2026}'s Composition I/II/III, but the pattern is older — they instantiate the percolation discipline implicit in @cite{potts-2005}'s multi-dimensional semantics and @cite{anderbois-brasoveanu-henderson-2015}'s at-issue proposal/appositive imposition split.
| Rule | When to use | At-issue layer | Not-at-issue layer |
|---|---|---|---|
| I | β has trivial NAI; α brings NAI | α.A β.A | α.N β.A |
| II | both α and β bring NAI | α.A β.A | α.N β.A ∧ β.N |
| III | α is illocutionary, takes the full ⟨A, N⟩ pair | (full pair handed to α) | (full pair handed to α) |
The substrate stays propositional (W → Prop rather than W → Bool)
because the consumers — verum studies, evidential illocution, biased polar
questions — operate over Set W already and never reduce to a
truth-table.
Relation to Core/Semantics/ContentLayer.LayeredProp #
Core/Semantics/ContentLayer.lean defines a 3-layer LayeredProp W
(presupposition / atIssue / implicature, all W → Bool) anchored on
@cite{van-der-sandt-maier-2003}'s LDRT, with offensive-layer machinery
for the Off-computation. BiLayered here is a 2-layer W → Prop-valued
sibling: it collapses presupposition + implicature into an
undifferentiated notAtIssue (matching the @cite{martinez-vera-2026}
⟨A, N⟩ pair shape) and stays in Prop to compose cleanly with Set W
consumers.
The two are deliberately not unified into a single parameterised
Layered (n : ℕ) at this stage: LDRT's Off-targeting machinery
needs the 3-way presupposition vs implicature discrimination, while
the verum / evidential illocution literature uses the 2-way A vs N split
without that discrimination. A future Layered n typeclass refactor
would consolidate both, with LayeredProp = Layered 3 W (W → Bool) and
BiLayered = Layered 2 W (W → Prop). Mirrors the mathlib pattern of
Probability.Kernel.Defs (general) + Probability.Kernel.Deterministic
(specialised) connected by an equivalence rather than re-stipulation.
A 2-layer ⟨A, N⟩ proposition. The at-issue layer is the proffered content; the not-at-issue layer collects everything backgrounded (presuppositions, conventional implicatures, evidential commitments).
Trivially-true notAtIssue is the default — most expressions add no
not-at-issue content, so the empty case should be cheap to construct.
- atIssue : W → Prop
Proffered, at-issue content.
- notAtIssue : W → Prop
Backgrounded, not-at-issue content. Defaults to trivially true.
Instances For
Lift a single proposition to a BiLayered with trivial NAI.
Equations
- Semantics.Composition.Layered.BiLayered.ofProp p = { atIssue := p }
Instances For
@cite{martinez-vera-2026} Composition rule I: β has empty NAI; α brings
NAI. The new at-issue layer is α.A β.A; the new NAI is α.N β.A.
Equations
- Semantics.Composition.Layered.composeI atFn naiFn β = { atIssue := atFn β.atIssue, notAtIssue := naiFn β.atIssue }
Instances For
@cite{martinez-vera-2026} Composition rule II: both α and β bring NAI.
The new NAI accumulates α.N β.A ∧ β.N.
Equations
- Semantics.Composition.Layered.composeII atFn naiFn β = { atIssue := atFn β.atIssue, notAtIssue := fun (w : W) => naiFn β.atIssue w ∧ β.notAtIssue w }
Instances For
@cite{martinez-vera-2026} Composition rule III: an illocutionary operator
takes the full ⟨A, N⟩ pair from β and returns a new pair. This is the
composition rule used for assert and present in
Theories/Discourse/EvidentialIllocution.lean.
Equations
- Semantics.Composition.Layered.composeIII op β = op β
Instances For
Composition I subsumes Composition II when β.N is trivially true: the
extra ∧ True conjunct collapses. This is the formal sense in which
rule II generalises rule I.