Dynamic Propositions: The Semantic Algebra #
@cite{heim-1982} @cite{groenendijk-stokhof-1991} @cite{kamp-reyle-1993}
The relational type DRS S = S → S → Prop and its core operations
form the semantic algebra shared by all dynamic semantic systems:
DRT, DPL, File Change Semantics, PLA, CDRT, BUS, and others.
Intellectual Origins #
Three independent but converging lines of work arrive at essentially the same algebraic structure:
@cite{heim-1982}: Sentence meanings are file change potentials — functions from files to files. Her principle (A),
SAT(F + φ) = SAT(F) ∩ {a : a SAT φ}, decomposes update into the operations formalized here astest(intersection) anddseq(successive file change).@cite{kamp-reyle-1993}: DRS verification clauses (Def 1.4.4) define when an embedding can be extended to satisfy each connective. These clauses correspond exactly to
test,dseq,dneg,dimpl, andddisj.@cite{groenendijk-stokhof-1991}: Dynamic Predicate Logic makes the relational type explicit: meanings ARE binary relations on assignments. Their DPL conjunction = relational composition (
dseq), DPL negation = universal non-existence (dneg), etc.
@cite{muskens-1996} unified these by parametrizing over the state
type S, showing all systems embed into this algebra.
Operations #
| Operation | Type | Origin |
|---|---|---|
DRS S | S → S → Prop | G&S 1991, implicit in Heim 1982 |
dseq | DRS S → DRS S → DRS S | relational composition |
test | Condition S → DRS S | identity + check |
dneg | DRS S → Condition S | universal non-existence |
dimpl | DRS S → DRS S → Condition S | K&R verification for ⇒ |
ddisj | DRS S → DRS S → Condition S | K&R verification for ∨ |
closure | DRS S → Condition S | existential closure (Heim's truth) |
DRS meaning: type s(st) — binary relation on states.
A proposition in dynamic semantics is a relation between an input state and an output state. This is the type that @cite{heim-1982}'s file change potentials, @cite{kamp-reyle-1993}'s DRS verification, and @cite{groenendijk-stokhof-1991}'s DPL meanings all instantiate.
Equations
- Semantics.Dynamic.Core.DynProp.DRS S = (S → S → Prop)
Instances For
Condition: type st — property of a single state.
Static conditions that do not change the state. Conditions are
lifted to DRS meanings via test.
Equations
Instances For
Dynamic negation: ¬D holds at i iff no output k satisfies D.
Corresponds to @cite{kamp-reyle-1993} Def 1.4.4 (negation verification) and @cite{groenendijk-stokhof-1991} DPL negation.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Test: lift a condition to a DRS that checks C without changing state.
Corresponds to @cite{heim-1982}'s intersection with the satisfaction
set: SAT(F') = SAT(F) ∩ {a : C(a)}.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Dynamic conjunction (sequencing): D₁ ; D₂.
Relational composition: there exists an intermediate state h
witnessing both transitions. This is @cite{heim-1982}'s successive
file change, @cite{kamp-reyle-1993}'s DRS sequencing, and
@cite{groenendijk-stokhof-1991}'s DPL conjunction.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Dynamic implication: D₁ → D₂.
Every way of satisfying the antecedent can be extended to satisfy
the consequent. Corresponds to @cite{kamp-reyle-1993} Def 1.4.4
(implication verification): for all h, if D₁ i h then
∃ k, D₂ h k.
Instances For
Dynamic disjunction: D₁ ∨ D₂.
Corresponds to @cite{kamp-reyle-1993} Def 1.4.4 (disjunction verification): there exists an output via either disjunct.
Instances For
Anaphoric closure: ∃ output state.
@cite{heim-1982}'s truth definition: a file is true iff its satisfaction set is non-empty, i.e., some assignment satisfies it.
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
A DRS D is valid iff true at all inputs.
Equations
- Semantics.Dynamic.Core.DynProp.valid D = ∀ (i : S), Semantics.Dynamic.Core.DynProp.trueAt D i
Instances For
Equations
- One or more equations did not get rendered due to their size.