Exercise 1) Define a homomorphism from to
, different from that defined in the lesson.
Solution: What we need to do here is define our own function, i.e., create our own function, and then check to see whether or not it’s a homomorphism. Let’s define the function as follows:
, where the “
” on the right hand side means to take the number
and calculate its value modulo 4. In this case, this means that
and this is depicted in figure 1.
I claim that this is indeed a homomorphism, and to check this claim we simply need to calculate for every possible choice of
and see that, for the same choice, this expression equals
. However, there are a lot of different possible choices, and yet again I find myself to be lazy. Therefore, I’ll try to prove this more abstractly, and in a way that will end up being useful for when we need to prove similar statements when the number of possible pairs is infinite (for then performing all necessary calculations is fundamentally impossible!). First, though, I encourage the reader to simply stare at figure 1 and try a couple of examples. I.e., add 3 and 7 on the left and see where you land (i.e., at 2), then take the arrow over to the right (i.e., to 2). Then, start at 3 on the left and head along the arrow (to 3), and go back to 7 and head along its arrow (also to 3), and then add these two elements on the right (i.e., 3+3) and note that we cycle back to 2. Thus, in this case,
. Try a few other cases on your own, and then continue on to learn the abstract proof.
Let’s simply consider what is for an arbitrary choice of
. In other words, we don’t know what these elements are—we’re leaving them completely abstract—and we’re going to see what we can say about them simply through our knowledge that they are in
. Well, by definition of the group product (which is modular arithmetic here) on
, we know that
. Thus, if
is less than 8 we leave it alone, and if it is bigger than 8 we simply cycle back through until it is smaller than 8 (for example, 6+7=13=8+5, so that we have “6+7 mod 8 = 5”).
Now, when we send this product over to , we’re simply taking the “mod 4” of the expression
. I.e., we’re calculating
, where we’re first mapping
to its remainder when divided by 8 (so that
), and then we’re taking the “mod 4” of this number so that if it is already less than 4 we leave it alone and if it’s greater than or equal to 4 we cycle back through. Let me be clear: we’re doing the “mod 8” bit because that’s the group product in
, and then we’re doing the “mod 4” bit because that is how the function
tells us to send our element over to
.
However, taking the “mod 8” bit of and then taking the “mod 4” bit of whatever is left is precisely the same as taking the “mod 4” of
initially. I.e., “modding out” by 8 and then by 4 is the same as just “modding out” by 4. A few examples should make this clear (in what follows we consider arbitrary integers, and not just those that can be obtained by adding elements of
). Namely, 41 equals
and so we have
. Now, “modding 1 out” by 4 simply gives 1 right back. Thus,
. Similarly, it’s clear that
, so we have
. Here’s another example. 54 equals
, so
. Now, modding this out by 4, we see that
. Also,
, so that
, and thus again we have
.
Let’s now put this all more abstractly (and in doing so things might seem to get a bit scary, but we must simply remember to stay calm and recall that notation is never scary!). Namely, the reason why modding out by 8 and then by 4 is the same as just modding out by 4 in one step is as follows. Suppose we take some arbitrary integer, let’s call it , and suppose we mod it out by 8. What we’re doing in this case is decomposing the integer
in the following way:
, where
is some integer and
is some integer greater than or equal to zero and less than 8, i.e.
. In the “mod out by 8” step, we say that
. Then, when we mod out by
, we’re decomposing
as
where now
and, since we know that
, we know that
is either 0 or 1 (i.e., if
is already less than 4, then we know that
). Thus, by doing the two step process of modding out by 8 and then by 4, we’re decomposing our original integer
as
where
(all I’ve done is put in our new expression for
) and our final result for modding
out by 8 and then again by 4 is the number
. However, since 8 is 2 times 4, we have that
, and so we finally get
. Thus, when we mod out by 4 straight away, we also get
! This is because if we stare at the last expression, we see that we’ve just decomposed
as “something times 4” plus “something that is greater than or equal to zero and less than 4”, which is what we need to do to mod out by 4. Thus, we’ve shown in complete generality that modding out by 8 and then by 4 is the same as modding out by 4 in one step. The same thing can always be said about “two-step modding out processes” when the second thing we mod out by is a factor of the first (just as 4 is a factor of 8), which is hopefully clear enough from this paragraph.
Now, to get back to our original problem, we have just shown that . Let me emphasize this by giving it it’s own line:
.
That’s the best that we can do right now, since we don’t know anything about or
. So, let’s see what we can say about
. Well, with all that we’ve done so far, this will be a bit easier. Namely, we know that
since this is the definition of the group product in
. We then know that the function
tells us to take our element in
and mod it out by 4, so that
and
. Thus we have
.
But again, if we mod two integers out by 4, add them together, and then mod out by 4 again, we always get the same result as we would by simply adding them together (without first modding out by 4) and then modding out by 4 just once at the end. To see this, we note that in modding and
both out by 4, we’re decomposing them as follows:
and
, where as usual
and
are both greater than or equal to 0 and less than 4 (i.e.
). Then
and
, so that
.
But again, by plugging in the above decompositions of and
, we have
. Thus,
,
where we leave the “mod 4” in on the right hand side of this equation because it might be the case that is still greater than 4 (e.g. if they’re both 3, or something), in which case we still need to mod out by 4 again. However, the left hand side of the most recently centered equation is precisely what we showed
equaled, and the right hand side is still what
equals. This therefore means that
!
Since and
were left completely arbitrary in this discussion, it must be the case that the above equation is true for all choices of
, and this is exactly what we needed to show to prove that the function
that we defined is indeed a homomorphism.
Phew! That was intense, but we’re done! If the “homomorphism-ness” of this was clear from the get-go, then great. If it wasn’t, then hopefully this discussion helped. Either way, it’s important to a) know how to prove things abstractly and b) get used to doing so, since our arguments will continue to get more and more abstract (and cool!). That said, rest assured, the solution to the next problem is much easier than this one.
Exercise 2) Define a homomorphism from to
(i.e., to itself).
Solution: Alright, compared to the above problem, this one is a breeze. There are many homomorphisms that we could define, but I’ll just do one explicitly and then give a nod to how some other ones might go. There are two important points here. One is that we need to create, define, construct our own function. Math is not a natural resource that springs up from the Earth, it needs to be created. The second point is that in order to prove that the function
that we define is indeed a homomorphism, we need to proceed abstractly. This is because we can’t concretely calculate every possible
and
because there are infinitely many choices of
, seeing as
is itself infinite. Regardless, let’s proceed.
Let me define the following function. Let be the function defined by
, i.e., it sends each integer to “2 times itself”. We note immediately that this function is not surjective, since for example the integer 1 is never hit by our function, since 1 is not two times anything. In fact, and hopefully obviously, no odd numbers are hit by this function. But that’s fine, the quality of being a homomorphism is completely independent of surjectivity or injectivity.
Now we need to check that this function actually is a homomorphism. But to see this is simple, once we recall that the group product on is simply addition (and since this is a map from
to itself, we have the same group product in both the domain and the codomain of the function). Let’s first consider
for some arbitrary
. We have
, so that
and by the definition of we have
. Similarly, we have that
and
, so that
.
This is precisely what we found for , so we’ve just shown that
,
and again since were left completely arbitrary this whole time, it is clear that the above statement is true for all possible
. To summarize, we have the following quick proof:
.
This completes the problem. I should mention though that we can get many more homomorphisms using the same construction as follows. We simply fix some integer and call it (in the above discussion,
). We then define the function
by
(so that the
defined above would be the same as
in this definition, where the subscript is just there to remind us what our multiplication factor defining the function is). Proving this is a homomorphism is completely simple, and in fact to do so I’m simply going to copy/past the above proof, add in subscripts (just for notational consistency) and only change the three 2’s to three M’s:
.
And Wa-La! Since there are infinitely many integers, and therefore infinitely many different choices of , each different choice giving rise to a different homomorphism
, we’ve effectively just defined infinitely many different homomorphisms! Cool!
On to Lesson 31