Kaplan's Anti-Monster Thesis (Tower Formulation) #
[Kap89]'s anti-monster thesis: the claim that natural language operators are content operators (shifting circumstances of evaluation) rather than context operators (shifting contexts of utterance).
Under the tower analysis, a monster is a shift that destabilizes some
expression — it changes what an access pattern resolves to (IsTowerMonster,
the ∃-projection of AccessPattern.Stable; equivalently a non-identity
shift). Kaplan's thesis for English says attitude verbs push identity shifts —
they embed without changing the context of utterance — so English indexicals,
which read from the origin, are stable under embedding (IsKaplanCompliant,
the dual ∀-projection of Stable in Reference/Kaplan.lean).
Cross-linguistic counterexamples
are languages where attitude verbs push non-identity shifts (e.g.,
attitudeShift changes the agent to the attitude holder).
Key Definitions #
IsTowerMonster: a shift where apply c != c for some ckaplansThesisAsTower: English embedding verbs push identity shifts
Schlenker's monstrous Say_m operator lives in Attitudes/ContextQuantification.lean
as sayM (with ctxBox its context-meaning specialization); this file is about the
monster predicate and Kaplan's thesis, not the operator.
A context shift is a tower monster when it destabilizes the innermost
reader: pushing it changes what the canonical local access pattern
(AccessPattern.innermostReader) resolves to. This is the
∃-over-expressions projection of AccessPattern.Stable — the innermost
reader is its universal witness, since a push only ever changes the
innermost context — dual to Kaplan-compliance's ∀-over-operators projection
(IsKaplanCompliant). Equivalently (isTowerMonster_iff_exists) the shift
moves some context: ∃ c, σ.apply c ≠ c.
Under the tower analysis, monsters are exactly the non-identity shifts. English attitude verbs push identity shifts (not monsters); Amharic attitude verbs push attitude shifts (monsters).
Equations
Instances For
A shift is a monster iff it moves some context: the pointwise
characterization recovering the direct form ∃ c, σ.apply c ≠ c.
Monsterhood depends only on the shift's action apply, not its label:
shifts with equal apply are monsters together.
The identity shift is not a monster.
An attitude shift is a monster when the holder differs from some context's agent.
Kaplan's thesis as a tower property: embedding verbs in a language push shifts that are not monsters (i.e., identity shifts).
For English, this means all attitude verbs push identityShift:
"John said that I am happy" evaluates "I" at the original context,
because the embedding verb didn't shift anything.
The embeddingShifts parameter lists the shifts that the language's
embedding verbs produce. The thesis holds iff none of them is a monster.
Equations
- Semantics.Reference.Monsters.KaplansThesisHolds embeddingShifts = ∀ σ ∈ embeddingShifts, ¬Semantics.Reference.Monsters.IsTowerMonster σ
Instances For
English embedding verbs push identity shifts. Kaplan's thesis holds.