Documentation

Linglib.Theories.Pragmatics.RelevanceTheory.CognitiveEnvironment

Cognitive Environments — @cite{sperber-wilson-1986} #

The cognitive environment of an individual is the set of all facts that are manifest to them. Manifestness is graded: perceptually obvious facts are highly manifest; distant inferences are weakly manifest.

DefinitionS&W Reference
CogEnvCh. 1, §7: "A cognitive environment of an individual"
isManifestCh. 1, §7: "manifest to an individual"
SharedCogEnvCh. 1, §9: "shared cognitive environment" (p. 42)
structure Theories.Pragmatics.RelevanceTheory.CogEnv (W : Type u_1) (A : Type u_2) :
Type (max u_1 u_2)

A cognitive environment: assumptions manifest to an individual.

  • W: possible-worlds type
  • A: index type for assumptions (typically a finite inductive)

Each assumption has propositional content and a degree of manifestness. Higher manifestness = more accessible, more salient, more readily represented.

S&W (p. 39): "A fact is manifest to an individual at a given time if and only if he is capable at that time of representing it mentally and accepting its representation as true or probably true."

  • content : AWBool

    Propositional content of each assumption

  • manifestness : A

    Degree of manifestness (higher = more accessible)

Instances For
    def Theories.Pragmatics.RelevanceTheory.CogEnv.isManifest {W : Type u_1} {A : Type u_2} (env : CogEnv W A) (a : A) :

    An assumption is manifest iff its degree is nonzero.

    Equations
    Instances For
      def Theories.Pragmatics.RelevanceTheory.CogEnv.moreManifest {W : Type u_1} {A : Type u_2} (env : CogEnv W A) (a b : A) :

      Assumption a is more manifest than b.

      Equations
      Instances For
        theorem Theories.Pragmatics.RelevanceTheory.CogEnv.moreManifest_trans {W : Type u_1} {A : Type u_2} (env : CogEnv W A) {a b c : A} (hab : env.moreManifest a b) (hbc : env.moreManifest b c) :
        env.moreManifest a c

        moreManifest is transitive.

        A shared cognitive environment: assumptions manifest to all parties, where the fact that they share the environment is itself manifest.

        S&W (p. 42) argue that mutual knowledge (an infinite regress of "A knows that B knows that A knows...") is unattainable. Their replacement is the SHARED cognitive environment: a cognitive environment that two people share, where it is manifest to both that they share it.

        This is NOT a weaker version of mutual knowledge — it's a fundamentally different notion. The sharing is grounded in perceptual co-presence and similar cognitive abilities, not in iterated belief attribution.

        • content : AWBool
        • parties :

          Number of parties sharing this environment

        • sharingManifest : Prop

          The sharing itself is manifest (reflexivity condition)

        Instances For