Kennedy's Measure Function Approach #
@cite{kennedy-2007} @cite{kennedy-mcnally-2005}
@cite{kennedy-2007} "Vagueness and Grammar": gradable adjectives denote relations between individuals and degrees, mediated by a measure function μ.
Denotation #
⟦tall⟧ = λd.λx. height(x) ≥ d
The adjective takes a degree argument d (type ⟨d,⟨e,t⟩⟩) and returns
a predicate true of entities whose degree meets or exceeds d.
Comparative #
⟦-er⟧ = λG.λG'. max(G') > max(G)
The comparative morpheme takes two degree predicates (from the matrix and the than-clause) and asserts the matrix maximum exceeds the standard maximum.
Scale Structure and Interpretive Economy #
Kennedy's key contribution: scale structure (open vs. closed) determines how the positive form standard is set:
- Open scale (tall): standard = contextual norm (comparison class)
- Closed scale (full): standard = scale endpoint (Interpretive Economy)
Interpretive Economy: "Maximize the contribution of the conventional meanings of the elements of a sentence to the computation of its truth conditions." When a scale has an endpoint, using it as the standard is more informative than using a contextual norm.
Kennedy's adjective denotation: a relation between degrees and entities. ⟦tall⟧ = λd.λx. height(x) ≥ d The degree argument is abstracted over and bound by a degree morpheme (-er, as, -est, too, enough).
Equations
- Semantics.Degree.Frameworks.Kennedy.adjDenotation μ d x = (μ x ≥ d)
Instances For
The degree set of an entity: the set of degrees d such that μ(x) ≥ d. This is an initial segment (downward closed set) of the scale.
Instances For
Kennedy's comparative morpheme: ⟦-er⟧ = λG.λG'. max(G') > max(G). Under the measure function approach, this reduces to comparing the maxima of two degree sets. Since degreeSet is [0, μ(x)] (for positive adjectives on bounded scales), max = μ(x).
Equations
- Semantics.Degree.Frameworks.Kennedy.comparativeMorpheme maxA maxB = (maxA > maxB)
Instances For
Kennedy comparative with measure function: reduces to direct comparison. "A is taller than B" iff height(A) > height(B).
Equations
- Semantics.Degree.Frameworks.Kennedy.kennedyComparative μ a b = (μ a > μ b)
Instances For
Positive form standard: how the contextual threshold is determined. @cite{kennedy-2007}: for open scales, the standard is the contextual norm; for closed scales, it's the relevant endpoint.
- contextual : PositiveStandard
- minEndpoint : PositiveStandard
- maxEndpoint : PositiveStandard
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Interpretive Economy determines the standard from scale structure. When a scale has an endpoint, Interpretive Economy requires using it as the standard (more informative than contextual norm).
Equations
- Semantics.Degree.Frameworks.Kennedy.interpretiveEconomy Core.Scale.Boundedness.open_ = Semantics.Degree.Frameworks.Kennedy.PositiveStandard.contextual
- Semantics.Degree.Frameworks.Kennedy.interpretiveEconomy Core.Scale.Boundedness.lowerBounded = Semantics.Degree.Frameworks.Kennedy.PositiveStandard.minEndpoint
- Semantics.Degree.Frameworks.Kennedy.interpretiveEconomy Core.Scale.Boundedness.upperBounded = Semantics.Degree.Frameworks.Kennedy.PositiveStandard.maxEndpoint
- Semantics.Degree.Frameworks.Kennedy.interpretiveEconomy Core.Scale.Boundedness.closed = Semantics.Degree.Frameworks.Kennedy.PositiveStandard.maxEndpoint
Instances For
@cite{kennedy-2007} Class A vs. Class B adjectives.
- Class A (relative): open scale, contextual standard. "tall", "expensive", "heavy"
- Class B (absolute): closed scale, endpoint standard. "full", "empty", "straight", "bent"
The class is determined entirely by scale boundedness.
Equations
Instances For
Class A adjectives have contextual standards.
Class B adjectives (closed scale) have endpoint standards.