Skip to main content
Logo image

Section 8.2 Powers

Let’s continue to restrict ourselves to looking at \(\mathbb{Z}_p\text{,}\) the integers modulo some prime \(p\text{,}\) for a bit longer. This will enable us to get a little more detailed in our exploration. We eventually want to explore solutions to congruences modulo primes and prime powers.
Let’s begin by exploring powers. Powers are particularly important, since polynomials are constructed from them.
For instance, if \(a=2\) and \(p=7\text{,}\) the powers of \(a\) begin with \(0,2,4,1\) since \(2^0=1\) and \(2^3=8\equiv 1\text{.}\) The following interact allows (not yet colored) exploration of many powers \(a^n\) modulo \(p\) for various primes \(p\) and bases \(a\text{.}\)
Do you see any patterns? It’s probably a little early to try to come up with potential theorems, but there should be at least some patterns you see. Do you maybe even see any theorems we have already proved in here?
One of the biggest patterns is hard to see in this format, but is the simplest. Given a prime \(p\text{,}\) you should get get the same answers for \(a\equiv a'\) (mod \(p\)). (Recall this fact was the core of the proof of Fact 6.1.4.) So we should really just restrict ourselves to looking at \(0\leq a\lt p\text{.}\)

Subsection 8.2.1 Returning to visualizing

Still, this is a lot of data to assimilate. Is there some way to think about it differently?
This next interact is super-cool, because it combines the short, color-coded format with the much less familiar material of powers.
Colored table of powers modulo \(n=11\)
Figure 8.2.1. Colored table of powers modulo \(n=11\)
The default coloring needs some explanation, as they are not the same as in the previous example. The \(a\) row and \(b\) column gives the color corresponding to \(a^b\text{ (mod }p)\text{,}\) where the colors are given by the colorbar on the right. From this we see that the first (\(0\)th) column is all the color for \(a^0=1\text{,}\) and the second (\(1\)th) column gives the colors of each element \(a^1=a\) of \(\mathbb{Z}_p\text{.}\) For instance, since \(3^4\equiv 4\) (mod \(7\)) in the initial example, it has the color of the color corresponding to \(4\text{.}\)
(As far as I know, this representation first appears in Wagon and Bressoud’s excellent computational number theory text [E.4.7]. The PascGalois 1  project has related visualizations.)

Sage note 8.2.2. Colorful options.

If you don’t like the colors, you can change the word in the quotes in the command mycmap = plt.get_cmap(...) (currently 'gist_earth'); for instance, 'gray' gives a grayscale plot, which is most appropriate for certain vision-impaired users. Some others you could try are 'Oranges' or 'hsv' or … Well, see the next Sage cell if you really want to know all of them!
What color patterns can you see here? To say it another way, what potential theorems do you see? (Again, do you see any that we already have discussed?)
In a classroom or self-study situation, I strongly recommend thinking about this until coming up with some nice potential theorem regarding whether there are any patterns in \(a^b\) (mod \(p\)) that hold for all \(p\) or all \(a\) or all \(b\text{,}\) or something.
www.pascgalois.org/