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.
| Definition | S&W Reference |
|---|---|
CogEnv | Ch. 1, §7: "A cognitive environment of an individual" |
isManifest | Ch. 1, §7: "manifest to an individual" |
SharedCogEnv | Ch. 1, §9: "shared cognitive environment" (p. 42) |
A cognitive environment: assumptions manifest to an individual.
W: possible-worlds typeA: 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 : A → W → Bool
Propositional content of each assumption
- manifestness : A → ℕ
Degree of manifestness (higher = more accessible)
Instances For
An assumption is manifest iff its degree is nonzero.
Equations
- env.isManifest a = (0 < env.manifestness a)
Instances For
Assumption a is more manifest than b.
Equations
- env.moreManifest a b = (env.manifestness b < env.manifestness a)
Instances For
moreManifest is transitive.