Dinis and Jacinto (2026): Marginality scales for gradable adjectives #
This file formalizes [dinis-jacinto-2026]'s marginality scales account of vague gradable adjectives. ML theory, the theory of marginal and large differences of [dinis-jacinto-2025], is simplified to a strict linear order with one primitive, marginally smaller than: largely smaller than is smaller but not marginally so, Definition 2.1, and five axioms remain, Figure 1, from which marginal smallness is transitive and bounded, Theorem 2.2, at most marginal difference is an equivalence relation and large difference is not transitive, Definition 2.3 and fn. 9. The representative model of the representation theorem is the lexicographic product of the rationals and the integers, a difference in the second coordinate alone being marginal, Definition 3.1. The account then takes over [fara-2000]'s interest-relative semantics after [Ken99]: a gradable adjective denotes a scale with a measure function from circumstances of evaluation and objects to degrees, the comparative compares degrees, and the positive form holds of an object whose degree is significantly, that is largely, greater than the standard of comparison, §5.1, on scales that satisfy ML, §5.2. Three consequences follow. An object that was in the positive form's extension and no longer is was greater on the scale, the case of Charles III of §5.4, which a two-scale account that reads the comparative off precise degrees cannot deliver. Objects at most marginally different are alike with respect to the positive form, [fara-2000]'s similarity constraint, so that a chain of marginal steps preserves the positive form and a Soritical sequence must contain a step that is not marginal, §6.1. And the clustering of the degrees of the objects in a vague predicate's extension implies tolerance, §3, and holds of the positive form.
Implementation notes #
The strict order R is the < of a LinearOrder, whose axioms are the order conditions (1)
to (4). Figure 1 is an image; Axioms 3 to 5 are stated as the text glosses them, with largely
smaller than unfolded. The measure function's circumstances and objects are type parameters,
and the Kaplanian context enters only through the standard of comparison and the
agent-relative marginality relation, which are held fixed. The representation and uniqueness
theorems of [dinis-jacinto-2025] are not formalized; the representative model is shown to
satisfy ML and to carry the examples of §5.2 and fn. 9.
References #
- [dinis-jacinto-2026]
- [dinis-jacinto-2025]
- [fara-2000]
- [Ken99]
- [kennedy-2007]
ML theory, §2 #
ML theory, Figure 1: a linear order with a primitive marginally smaller than relation
M, largely smaller than being x < y ∧ ¬ M x y.
- M : α → α → Prop
xis marginally smaller thany. Axiom 1: some element is largely smaller than another.
Axiom 2: marginally smaller than implies smaller than.
- irrelevance (x y z : α) : self.M x y → (z < y ∧ ¬self.M z y → z < x ∧ ¬self.M z x) ∧ (x < z ∧ ¬self.M x z → y < z ∧ ¬self.M y z)
Axiom 3, M-irrelevance: when
xis marginally smaller thany, whatever is largely smaller thanyis largely smaller thanx, andyis largely smaller than whateverxis largely smaller than. - extends_lt (x y z : α) : x < y → (y < z ∧ ¬self.M y z → x < z ∧ ¬self.M x z) ∧ (z < x ∧ ¬self.M z x → z < y ∧ ¬self.M z y)
Axiom 4: largely smaller than extends along smaller than: whatever is smaller than something largely smaller than
zis largely smaller thanz, and whatever is largely smaller than something smaller thanzis largely smaller thanz. - decomposition (x y : α) : x < y ∧ ¬self.M x y → (∃ (z : α), self.M x z ∧ z < y ∧ ¬self.M z y) ∧ ∃ (w : α), self.M w y ∧ x < w ∧ ¬self.M x w
Axiom 5, decomposition: a large difference is a marginal step followed by a large one, and a large one followed by a marginal step.
Instances For
Marginal difference, Definition 2.3.
Equations
- ml.MarginalDiff x y = (ml.M x y ∨ ml.M y x)
Instances For
At most marginal difference, Definition 2.3: sameness for present purposes.
Equations
- ml.AtMostMarginal x y = (x = y ∨ ml.MarginalDiff x y)
Instances For
At most marginal difference is transitive, by M-transitivity when the steps agree in direction and by M-boundedness when they do not.
Sameness for present purposes, Definition 2.3, as an equivalence relation.
Equations
- DinisJacinto2026.MLScale.atMostMarginalSetoid = { r := ml.AtMostMarginal, iseqv := ⋯ }
Instances For
The similarity constraint, §6.1 #
Marginally different degrees are alike with respect to being largely greater than a standard: the second half is M-irrelevance and the first M-boundedness.
Fara's similarity constraint on degrees: at most marginally different degrees are alike with respect to being largely greater than a standard.
M-chains: however many marginal steps separate two degrees, they are alike with respect to being largely greater than a standard.
The representative model, Definition 3.1 #
Marginally smaller in the representative model: the same first coordinate and a smaller second one.
Equations
- DinisJacinto2026.MLScale.repM x y = ((ofLex x).1 = (ofLex y).1 ∧ (ofLex x).2 < (ofLex y).2)
Instances For
Largely smaller in the representative model is a smaller first coordinate.
The representative model R*, Definition 3.1: rational-integer pairs in lexicographic
order, marginally smaller when the first coordinates agree.
Equations
- One or more equations did not get rendered due to their size.
Instances For
Large difference is not transitive, fn. 9: in Figure 2, m and n differ marginally
though each differs largely from p.
The marginality scales account, §5 #
The comparative, §5.1: y at circumstance v is smaller on the scale than x at u.
Equations
- DinisJacinto2026.MLScale.er μ u x v y = (μ v y < μ u x)
Instances For
The positive form, §5.1, after Fara: the standard of comparison is significantly, that is largely, smaller than the object's degree at the circumstance.
Instances For
Figure 5: an object whose degree exceeds the standard only marginally is not in the positive form's extension.
Charles III, §5.4: an object in the positive form's extension at one circumstance and out of it at another was greater on the scale, since the scale relations do not vary with the circumstance; a two-scale account that reads the comparative off unchanged precise degrees cannot say so.
Tolerance, §3: an object out of the positive form's extension keeps out anything whose degree is marginally greater, and one in it keeps in anything whose degree is marginally smaller.
A Soritical sequence for the positive form is no chain of marginal steps: some adjacent pair differs largely, the nonstandard primitivist solution to the Sorites of §3 and §6.1.
Clustered degrees, §3: something has the property iff its degree differs at most marginally from the degree of something with the property.
Equations
- DinisJacinto2026.MLScale.Clustered B δ = ∀ (x : O), B x ↔ ∃ (y : O), B y ∧ ml.AtMostMarginal (δ y) (δ x)
Instances For
The positive form's extension is clustered: the marginality scales account implies the nonstandard primitivist principle of §3.
Ronaldo and Zidane, §5.2 #
The example of §5.2 in the representative model: with the standard at ⟨0, 0⟩, Zidane at
⟨1, 2⟩ is balder than Ronaldo at ⟨0, 10⟩, and Zidane is bald where Ronaldo, though balder
than the standard, is not.