Decision-Theoretic Semantics: Core #
@cite{merin-1999}
Core definitions for Merin's Decision-Theoretic Semantics (DTS). Meaning is explicated through signed relevance — the Bayes factor P(E|H)/P(E|¬H) — relative to a dichotomic issue {H, ¬H}.
Key Definitions #
Issue— a dichotomic hypothesis {H, ¬H}DTSContext— issue + prior probabilitycondProb— conditional probability P(E|H) over finite worldsbayesFactor— P(E|H) / P(E|¬H), exact rational arithmeticposRelevant/negRelevant/irrelevant— ordinal relevance predicateshContrary— A and B have opposite relevance signsCIP— Conditional Independence Presumptionpxor— exclusive disjunction for BProp
Main Results #
- Corollary 3 (
sign_reversal): BF_H(E) · BF_{¬H}(E) = 1 - Fact 5 (
bayes_factor_multiplicative_under_cip): Under CIP, BF(A∧B) = BF(A) · BF(B) - Theorem 6b (
xor_not_necessarily_positive): Counterexample showing XOR of two positively relevant propositions can be negatively relevant
A dichotomic issue {H, ¬H}, the hypothesis under consideration.
- topic : BProp W
The hypothesis H (as a decidable proposition).
Instances For
Swap the issue: replace H with ¬H.
Equations
- Theories.DTS.swapIssue ctx = { issue := { topic := Core.Proposition.Decidable.pnot W ctx.issue.topic }, prior := ctx.prior }
Instances For
Conditional probability P(E|H) = P(E∧H) / P(H).
Returns 0 when P(H) = 0 (undefined conditioning).
Equations
- Theories.DTS.condProb prior e h = if Theories.DTS.probSum prior h = 0 then 0 else Theories.DTS.probSum prior (Core.Proposition.Decidable.pand W e h) / Theories.DTS.probSum prior h
Instances For
Marginal (unconditional) probability P(E) = P(E|⊤).
Equations
- Theories.DTS.margProb prior e = Theories.DTS.probSum prior e
Instances For
Bayes factor: P(E|H) / P(E|¬H).
The pre-log ratio that determines relevance sign and magnitude.
Division-by-zero convention follows ArgumentativeStrength.bayesFactor:
- P(E|¬H) = 0, P(E|H) > 0 → 1000 (effectively +∞)
- P(E|¬H) = 0, P(E|H) = 0 → 1 (neutral)
Equations
- One or more equations did not get rendered due to their size.
Instances For
E is positively relevant to H: BF > 1 (E confirms H).
Equations
- Theories.DTS.posRelevant ctx e = (Theories.DTS.bayesFactor ctx e > 1)
Instances For
Equations
- Theories.DTS.instDecidablePosRelevant ctx e = inferInstanceAs (Decidable (Theories.DTS.bayesFactor ctx e > 1))
E is negatively relevant to H: BF < 1 (E disconfirms H).
Equations
- Theories.DTS.negRelevant ctx e = (Theories.DTS.bayesFactor ctx e < 1)
Instances For
Equations
- Theories.DTS.instDecidableNegRelevant ctx e = inferInstanceAs (Decidable (Theories.DTS.bayesFactor ctx e < 1))
E is irrelevant to H: BF = 1 (E neither confirms nor disconfirms).
Equations
- Theories.DTS.irrelevant ctx e = (Theories.DTS.bayesFactor ctx e = 1)
Instances For
Equations
- Theories.DTS.instDecidableIrrelevant ctx e = inferInstanceAs (Decidable (Theories.DTS.bayesFactor ctx e = 1))
A and B have opposite relevance signs w.r.t. H.
Merin's "contrariness": one supports H while the other supports ¬H.
Equations
- Theories.DTS.hContrary ctx a b = (Theories.DTS.posRelevant ctx a ∧ Theories.DTS.negRelevant ctx b ∨ Theories.DTS.negRelevant ctx a ∧ Theories.DTS.posRelevant ctx b)
Instances For
Conditional Independence Presumption (CIP, Merin's Def. 6): A and B are conditionally independent given both H and ¬H.
P(A∧B|H) = P(A|H)·P(B|H) and P(A∧B|¬H) = P(A|¬H)·P(B|¬H).
Equations
- One or more equations did not get rendered due to their size.
Instances For
Exclusive disjunction (XOR) for decidable propositions.
Equations
- Theories.DTS.pxor a b w = (a w ^^ b w)
Instances For
Corollary 3 (qualitative sign reversal): E is positively relevant to H iff E is negatively relevant to ¬H.
The ordinal content of r_H(E) = −r_{¬H}(E).
Corollary 3 (quantitative): BF_H(E) · BF_{¬H}(E) = 1.
Exact when conditional probabilities are nonzero.
Fact 2: Relationship between relevance and conditional informativeness.
r_H(E) = inf(E, H) − inf(E, ¬H) where inf(E,X) = −log P(E|X). That is, relevance is the differential of conditional informativeness.
Not provable in ℚ (requires logarithm properties).
Fact 5: Under CIP, Bayes factor is multiplicative over conjunction.
BF(A∧B) = BF(A) · BF(B) when A and B are conditionally independent given both H and ¬H.
Theorem 6a (part 1): Under CIP with both A,B positively relevant, conjunction dominates both conjuncts: BF(A∧B) > max(BF(A), BF(B)).
Theorem 6a (full): Under CIP with both A,B positively relevant, BF(A∧B) > max(BF(A), BF(B)) > BF(A∨B) > 1.
The disjunction ordering requires inclusion-exclusion on conditional probabilities: P(A∨B|X) = P(A|X) + P(B|X) - P(A∧B|X).
Equations
- One or more equations did not get rendered due to their size.
Theorem 6b: XOR of two positively relevant propositions is not necessarily positively relevant.
Counterexample on World4: H={w0}, A={w0,w1}, B={w0,w2}, uniform prior. BF(A) = 3, BF(B) = 3, but A⊕B = {w1,w2} has BF = 0 (not pos relevant).