Notation for fields and the elements of the sets used to define them.

definitionfield-theorynotation

Context:

While trying to figure out how to prove that the characteristic of a field $\mathcal{F}$ is either $0$ or prime, I realized that I was conflating the elements of the field with integers, because of the notation.


Question:

Because articulating this question abstractly is beyond my ability, I'll illustrate my confusion with an example:

If $\mathbb{Z}_5$ is the set $\{0,1,2,3,4\}$, along with modular addition and multiplication (i.e. in this case, after performing the standard addition or multiplication, the least remainder after ordinary division by 5; e.g. $4\cdot4 = 1$ and $3+4 = 2$) defines a field. Here,
$$
4 + 1 = 0,
$$

i.e. $1$ is the additive inverse of $4$.

Now, all the classical definitions I've seen usually define the additive inverse as follows (this example is taken from Wikipedia):

for every a in F, there exists an element in F, denoted −a, called the additive inverse of a, such that a + (−a) = 0.

Does the phrase "denoted -a" imply that, in the example provided above, we should denote "$1 = -4$"? Or are such definitions simply stating what they mean when they use the symbol (i.e. it is simply saying we should think of $1$ as the additive-inverse-of-4)? In other words, is "$-4$" an element of this field, even if it is not an element of the set used to define the field (does it even make sense to talk of "an element of a field" in this way)?

Just to be clear, if we were to instead denote the additive inverse of a by na, is it then appropriate to write something like $1 = n4$, for the above field? While I can understand what is meant by this, what bothers me is that $n4$ is not an element of any set described or defined, elsewhere.


Final Considerations

Up until here, I'd be tempted to more or less ignore the whole issue; however, while trying to work out a proof that a field's characteristic is either zero or prime, I found myself wanting to use integers to describe the operations, regardless of whether or not the elements of the set were, themselves, numbers. For example, given the field $\mathbb{F}$ defined by:
$$
\left\{
\begin{array}{lll}
\mathbb{S} = \{a, b\},
&
\begin{array}{c|c|c}
\pmb{+} & \pmb{a} & \pmb{b} \\ \hline
\pmb{a} & a & b \\ \hline
\pmb{b} & b & a
\end{array},
&
\begin{array}{c|c|c}
\pmb{\cdot} & \pmb{a} & \pmb{b} \\ \hline
\pmb{a} & a & a \\ \hline
\pmb{b} & a & b
\end{array},
\end{array}
\right.
$$

it seems natural and useful to define an expression such as $a + a + a$ as $3a$; however, I'm not sure how to think about the relationship of the symbols introduced by this notation to the field itself (this becomes even more confusing if I use "1" to denote the multiplicative identity). This seems — at least to my confused mind — somehow related to the confusion expressed in the first example, above.

Is the use of 3 in "3a" and -4 in "1 = -4" nothing more than a convenient notation to describe the elements of the field? While I feel like that is all they are, I also feel that they carry with them some sort of implied structure (perhaps that of an abelian group?), that isn't accounted for, formally / explicitly.

Best Answer

Several comments.

tl;dr You are overthinking this.

When you write $\mathbb{Z}_5$ as $\{0, 1, 2, 3, 4\}$ those elements are not integers. They are just the names you have chosen for the five elements of that field. Of course those symbols also name integers, and the coincidence is not an accident. The coincidence together with the idea of "modulo $5$" tells you how to do the arithmetic in that field.

The wikipedia definition tells you that a standard way to name the inverse of the element $a$ is to write $-a$. Then in $\mathbb{Z}_5$ you write $-1 = 4$ since $1 + 4 = 0$. So "$-1$" is just another name for the element names "$4$". It's not some other element of the field you forgot to write down.

Every field has a multiplicative identity which is always called $1$ although it is not the integer 1. Then by repeated addition, for every positive integer every field contains an element you could reasonably call $n$. If those elements are all different from one another then the field contains a copy of the integers (even a copy of the rationals) and is said to have characteristic $0$. If there are repeats in the sequence of field elements named by the positive integers then ...

Related Question