4

I started to study the relation of congruence modulo n and a big important question came to me. In the book Poofs and Fundamentals, by Ethan D. Bloch, we have the definition:

Definition: Let $n \in \mathbb{N}$. Define operations $+$ and $\cdot$ on $\mathbb{Z}_{n}$ by letting $[a] + [b] = [a + b]$ and $[a] \cdot [b] = [ab]$ for all $[a], [b] \in \mathbb{Z}_{n}$.

Next, Bloch consider the following problem: Let $n \in \mathbb{N}$, and let $[a], [b], [c], [d] \in \mathbb{Z}_{n}$. Suppose that $[a] = [c]$ and $[b] = [d]$. Do $[a + b] = [c + d]$ and $[ab] = [cd]$ necessarily hold?

Bloch also states that if this doesn’t hold, then both operations are not well-defined. Reading this made me think of the following questions:

  1. Why proving that if $[a] = [c]$ and $[b] = [d]$ then $[a+b] = [c+d]$ shows that $+$ is well-defined in $\mathbb{Z}_{n}$?

  2. If I show that $\mathbb{Z}_{n}$ is closed under $+$, am I automatically showing that $+$ is well-defined in $\mathbb{Z}_{n}$? (If yes, what’s the relation between these two?)

Thank you so much for your attention!

Air Mike
  • 3,806
  • 1
    It would help if you focused your question a bit - each of those four questions are quite different. The first one is addressed in "Well defined" function - What does it mean? and other questions that StackExchange says are linked to it. If you still have trouble with question 2 after reading that, then explaining your thoughts and where you're having trouble connecting things would help someone answer. #3 and #4 are completely separate questions and could be their own question, but search around a bit. – Mark S. Aug 05 '20 at 12:42
  • I’m going to edit the question to be more clear! But thanks for the feedback in advance – Air Mike Aug 05 '20 at 12:51
  • I already edited, these two questions are my main problem. Thank you – Air Mike Aug 05 '20 at 12:57

1 Answers1

5

Question 1. We say that a definition is well-defined when, even though there is an apparent ambiguity in the definition, in fact there is not.

In your case, the definition $[a]+[b]=[a+b]$ is ambiguous because equivalence classes of different elements can coincide. For example, in $\mathbb{Z}_5$, $[3]=[8]$. So it is not immediately clear that if you take different representatives for $a$ or $b$ will give the same result for $[a+b]$. That is, one needs to prove that if $[a_1]=[a_2]$ and $[b_1]=[b_2]$ then $[a_1+b_1]=[a_2+b_2]$.

For example, suppose we define for $\mathbb{Z}_5$, $[a]^{[b]}:=[a^b]$. It looks fine but it is not really because $[3]=[8]$, $[2]=[7]$, but $[3^2]=[4]\ne[8^7]=[2]$, so the mapping is not well-defined.

Question 2. An operation is a well-defined function mapping $X^2\to X$. Showing closure and well-defined are not the same. An operation that is not well-defined is not normally called an operation, so in this strict sense, it does not make sense for an operation to be closed but not well-defined.

But even if one is generous with what makes an operation, showing closure does not automatically imply it is well-defined. For example, one can argue that the example above $[a]^{[b]}:=[a^b]$ is 'closed' in the sense that it gives an equivalence class as output, but it is still not well-defined.

Chrystomath
  • 10,798
  • So for the answer to first question: we are showing that these operations don’t depend on the equivalence classes nor the representatives, right? For the second answer: it became really clear to me the difference between closure and well-defined. Thank you so much for the extremely clarifying answer! – Air Mike Aug 06 '20 at 08:33
  • 1
    $[3]+[1]=[8]+[-4]=[-2]+[11]=\cdots=[4]$ in $\mathbb{Z}_5$; but $[3]+[2]=[0]$. The operation does depend on the equivalence classes, but not on which representative you choose from each. – Chrystomath Aug 06 '20 at 08:37
  • My mistake! You’re right, it only depends on the representative! Thank you so much! – Air Mike Aug 06 '20 at 08:38