[Lak70]: Tense and Its Relation to Participants #
[Lak70] argues that tense selection is sensitive to speaker/hearer
epistemic states, not just temporal ordering: past tense can apply to a
present-time event that has lost psychological salience ("The animal
you saw WAS a chipmunk" — it still is one), and embedded present survives
a past matrix when the content is novel to the hearer. The
TensePerspective frame extends [Cum26]'s EvidentialFrame with
these two participant dimensions; the paper's acceptability judgments
are collected as TenseJudgment data.
Key Minimal Pairs #
- §1 False tense: synthetic forms (WAS, IS) can express non-temporal tense; periphrastic forms (USED TO) cannot.
- §2 SOT/novelty: present tense survives under past matrix when content is novel to hearer ("discovered that the boy HAS blue eyes").
- §4 Perfect/salience: present perfect requires current relevance (*"Shakespeare has quarreled with Bacon" vs "Shakespeare has written...").
- §5 Will-deletion: scheduled events allow present-for-future ("The meeting starts at 3"), but unscheduled events do not (*"It rains Thursday").
Acceptability judgment for a tense example.
- grammatical : Acceptability
- ungrammatical : Acceptability
- marginal : Acceptability
Instances For
Equations
- Lakoff1970.instDecidableEqAcceptability x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- Lakoff1970.instReprAcceptability = { reprPrec := Lakoff1970.instReprAcceptability.repr }
Whether the tense use is "true" (temporal) or "false" (psychological).
- trueTense : TenseUseType
- falseTense : TenseUseType
Instances For
Equations
- Lakoff1970.instDecidableEqTenseUseType x✝ y✝ = if h : x✝.ctorIdx = y✝.ctorIdx then isTrue ⋯ else isFalse ⋯
Equations
- Lakoff1970.instReprTenseUseType = { reprPrec := Lakoff1970.instReprTenseUseType.repr }
Equations
- One or more equations did not get rendered due to their size.
Instances For
A grammaticality judgment from [Lak70].
- exNumber : String
Example number in the paper (e.g., "4a", "8a")
- sentence : String
The sentence (abbreviated)
- tenseUse : TenseUseType
True or false tense use
- formType : Morphology.Tense.TenseFormType
Synthetic or periphrastic form
- acceptability : Acceptability
The paper's acceptability judgment
Instances For
Equations
- Lakoff1970.instReprTenseJudgment = { reprPrec := Lakoff1970.instReprTenseJudgment.repr }
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
Equations
- One or more equations did not get rendered due to their size.
- Lakoff1970.instBEqTenseJudgment.beq x✝¹ x✝ = false
Instances For
(4a) "The animal you saw WAS a chipmunk" — false past, synthetic, OK.
Equations
- One or more equations did not get rendered due to their size.
Instances For
(6a) "The animal you saw IS a chipmunk" — true present, synthetic, OK.
Equations
- One or more equations did not get rendered due to their size.
Instances For
(8a) *"The animal you saw USED TO BE a chipmunk" — false past, periphrastic, ungrammatical. The periphrastic form forces true-past reading, which conflicts with the present-time event.
Equations
- One or more equations did not get rendered due to their size.
Instances For
(9a) "The animal you saw USED TO BE a chipmunk" — true past, periphrastic, grammatical. It genuinely WAS a chipmunk before.
Equations
- One or more equations did not get rendered due to their size.
Instances For
(13a) "He discovered that the boy HAD blue eyes" — SOT past-under-past, OK.
Equations
- One or more equations did not get rendered due to their size.
Instances For
(13b) "He discovered that the boy HAS blue eyes" — novel-info present survives under past matrix, grammatical when content is new to hearer.
Equations
- One or more equations did not get rendered due to their size.
Instances For
(22a) "Shakespeare has written 37 plays" — salient (enduring relevance), OK.
Equations
- One or more equations did not get rendered due to their size.
Instances For
(22b) *"Shakespeare has quarreled with Bacon" — not salient (no current relevance), ungrammatical with present perfect.
Equations
- One or more equations did not get rendered due to their size.
Instances For
(27a) "John will die" — overt future, grammatical (control).
Equations
- One or more equations did not get rendered due to their size.
Instances For
(27b) "John dies tomorrow" — will-deletion with scheduled/salient event, OK.
Equations
- One or more equations did not get rendered due to their size.
Instances For
(25b) *"It rains Thursday" — will-deletion without salience/schedule, ungrammatical. Weather events are not scheduled.
Equations
- One or more equations did not get rendered due to their size.
Instances For
All judgments from the paper.
Equations
- One or more equations did not get rendered due to their size.
Instances For
False-tense judgments only.
Equations
- Lakoff1970.falseTenseJudgments = List.filter (fun (x : Lakoff1970.TenseJudgment) => x.tenseUse == Lakoff1970.TenseUseType.falseTense) Lakoff1970.allJudgments
Instances For
Periphrastic judgments only.
Equations
- Lakoff1970.periphrasticJudgments = List.filter (fun (x : Lakoff1970.TenseJudgment) => x.formType == Morphology.Tense.TenseFormType.periphrastic) Lakoff1970.allJudgments
Instances For
There are 4 false-tense judgments.
There are 2 periphrastic judgments.
The only ungrammatical false-tense-with-periphrastic example is ex8a.
Lakoff's participant-sensitive tense frame. Extends [Cum26]'s
EvidentialFrame (which extends ReichenbachFrame with acquisition
time A) with two psychological dimensions. Lakoff's observations are
orthogonal to Cumming's evidential constraint: "false past" arises
even when evidence is downstream (the chipmunk is still there, so
T ≤ A holds) because the event has lost psychological salience.
- speechTime : Time
- perspectiveTime : Time
- referenceTime : Time
- eventTime : Time
- acquisitionTime : Time
- speakerSalience : Bool
Is the event psychologically salient to the speaker at S?
- hearerNovelty : Bool
Is the propositional content new to the hearer?
Instances For
False tense (Lakoff §1): past (or future) morphology applied to a present-time event because the speaker does not find it salient.
Past example: "The animal you saw WAS a chipmunk" (it still IS one).
Future example: "That thing WILL be a chipmunk" (it already IS one).
The licensing condition is the same for both; the surface-form
divergence is recorded in the Fragment entries (formType).
Equations
- Lakoff1970.falsePast f = (f.eventTime = f.speechTime ∧ ¬f.speakerSalience = true)
Instances For
Novel-information present (Lakoff §2): present tense survives under a past-tense matrix verb because the embedded content is new to the hearer ("He discovered that the boy HAS blue eyes").
Equations
- Lakoff1970.novelInfoPresent f = (f.hearerNovelty = true ∧ f.eventTime = f.speechTime)
Instances For
Perfect requires salience (Lakoff §4): the present perfect is infelicitous when the event lacks current relevance to the speaker (*"Shakespeare has quarreled with Bacon").
Equations
- Lakoff1970.perfectRequiresSalience f = (f.speakerSalience = true)
Instances For
Will-deletion (Lakoff §5): future-time events can appear in present tense (deleting will) when the speaker treats them as salient and scheduled ("The meeting starts at 3").
Equations
- Lakoff1970.willDeletion f = (f.speechTime < f.eventTime ∧ f.speakerSalience = true)
Instances For
Classify a tense use as true (grammatical tense matches the temporal
relation) or false (tense encodes psychological perspective instead),
reusing the TenseUseType classification of the judgment data.
Derived, not stipulated: the use is true exactly when the event-vs-speech
comparison falls in the tense's Finset Ordering cell
(Core.Order.holds gramTense f.eventTime f.speechTime), reproducing the
four-way past/present/future/nonpast table (before: E < S; overlapping:
E = S; after: S < E; notBefore: S ≤ E).
Equations
- Lakoff1970.classifyUse gramTense f = if Core.Order.holds gramTense f.eventTime f.speechTime then Lakoff1970.TenseUseType.trueTense else Lakoff1970.TenseUseType.falseTense
Instances For
Periphrastic forms block false tense (Lakoff §1, ex. 8a vs 9a): a false tense use demands a synthetic form; true tense is compatible with any form.
Equations
- Lakoff1970.FalseTenseLicensed use form = (use = Lakoff1970.TenseUseType.falseTense → form = Morphology.Tense.TenseFormType.synthetic)
Instances For
A false past is temporally present — the mismatch is purely psychological (salience), not temporal.
When falsePast holds, the UP present-tense constraint (T = S) of
[Cum26]'s UPCondition.present is satisfied.