Code
omega <- c("I", "me", "you", "he", "him", "she", "her",
"we", "us", "they", "them")
"him" %in% omega
"herself" %in% omegaSuppose that we want to describe the form of one English personal pronoun token and eventually ask whether it is nominative, accusative, singular, or plural. We must first specify what counts as one possible result. A recording may contain an utterance of them. A transcript represents that utterance with the string them, while an annotation might represent it with the label third person plural accusative. A particular probability model must choose which of these representations defines its outcomes.
We assume familiarity with the basic set theory reviewed in Languages as formal objects, including sets, membership, subsets, power sets, union, intersection, difference, and complement. We use those concepts here to define probability spaces.
We will begin with the surface form. One possible list is
\Omega \equiv\{\textit{I},\textit{me},\textit{you},\textit{he},\textit{him}, \textit{she},\textit{her},\textit{we},\textit{us},\textit{they},\textit{them}\}.
An outcome is one possible result represented by a probability model. The sample space \Omega is the set of all such outcomes.
Each member of \Omega is one outcome. If the recorded form is her, then her is the realized outcome.
The sample space contains eleven represented surface strings, not an inventory of every English pronoun use. Some strings are syncretic: the surface form you, for instance, does not by itself determine syntactic case. Thus an analysis of case must add an annotation to the outcome or use a deliberately restricted case-coded sample space.
At this stage, we have not assigned probabilities. We can only ask whether a proposed outcome belongs to the sample space. The notation x\in\Omega says that x is a member of \Omega, while x\notin\Omega says that it is not.
For the space above,
\textit{him}\in\Omega \qquad\text{and}\qquad \textit{herself}\notin\Omega.
The first statement says that the model has an outcome corresponding to him. The second says that the model has no outcome corresponding to herself, not that speakers cannot produce that form.
A minimal base R representation makes the same membership check.
omega <- c("I", "me", "you", "he", "him", "she", "her",
"we", "us", "they", "them")
"him" %in% omega
"herself" %in% omegaThe first expression returns TRUE; the second returns FALSE. The code is only a finite encoding of the set written above. It does not yet define which outcomes are common.
Now consider a vowel production study. At least three sample spaces are possible.
Under the first representation, one outcome is an entire recording. Under the second, it is a vowel token. Under the third, it is one acoustic value.
Suppose a speaker produces heed twice and we measure F1 at the vowel midpoint. Under the second representation, the two vowel tokens are two possible observed units. Under the third representation, values such as 285 Hz and 301 Hz are possible observed results. A question about whether the vowel was /i/ belongs naturally to the token representation. A question about whether F1 was below 300 Hz belongs naturally to the measurement representation.
What counts as one outcome also determines which identifiers must accompany the observed value. In a judgment experiment, the response value 6 alone may not identify the trial that matters for analysis. We may instead represent an outcome as the pair
\langle\text{participant and sentence trial},\ 6\rangle.
If the analysis will compare responses across participants and sentences, the outcome must retain the participant and sentence identifiers.
An omitted outcome is not an impossible result. A space may appear complete because every listed outcome is assigned a place, even though the list omits results that the observation process can produce.
For instance, a forced choice experiment may offer the responses agent and patient. If participants can also skip the trial, then
\Omega\equiv\{\text{agent},\text{patient}\}
does not represent the recorded process unless skipped trials are removed by an explicit rule. A model using this space cannot distinguish a skipped response from missing data created later in processing.
The sample space need not contain every conceivable linguistic object. It must contain every result that the stated observation process can produce, including a skipped response when skipping is recorded as a possible response.
OTHER. Is OTHER an outcome? Explain your answer from the stored annotation process.