Processing math: 100%
Skip to main content

Section 16.1 Square Roots

Subsection 16.1.1 Recalling existing answers

To use the quadratic formula in full generality, one needs to know whether one can take square roots (for example, if they are complex, you won't have a real solution). So too, our first task for modular arithmetic will be finding such square roots.

Given our work in Chapter 7, e.g. Fact 7.2.2, it should be sufficient to solve

x2≑n (mod pe),

finding square roots modulo pe where p is prime. In most cases, we can proceed as in Examples 7.2.4 and 7.2.5 to reduce to finding solutions to x2≑n (mod p), though since fβ€²(x)=2x our version of Hensel's Lemma is not strong enough to fully reduce when p=2. We will ignore this caveat and focus on solving for square roots modulo a prime.

We have already done some of this! We restate here a fact in the proof of Theorem 12.3.2 and the combination of Fact 13.3.2 and Lemma 13.3.3.

Subsection 16.1.2 Finding more answers

We know the full answer (any modulus) for square roots of +1 from Fact 7.3.1. What about finding out when βˆ’1 has a square root for non-prime moduli? We can ask Sage about this:

Let's see a few examples of how to be more systematic about this.

Example 16.1.3. Prime power modulus.

For instance, let's go from p to p2 by trying a bit of Example 7.2.4 from earlier. Here, f(x)=x2+1 is what we want a solution for. If we are looking (mod 25), then we already know that (mod 5) we have x≑2 as a solution. Then a solution (mod 25) will look like 2+k(5) (again recall Example 7.2.4).

Remembering that fβ€²(x)=2x, in fact it will satisfy

22+15+k(2β‹…2)≑0 (mod 5)

which is 1+4k≑0, which has solution k≑1; hence a solution (mod 25) should be 2+1(5)≑7. And indeed 72+1=50 is divisible by 25 as expected!

(Notice that 5∀fβ€²(2)=4, so the technical condition is granted; otherwise we'd have 1≑0 to solve!)

Example 16.1.4. Composite moduli.

Suppose I want solutions to x2β‰‘βˆ’1 (mod 14). I should immediately note that although x2β‰‘βˆ’1 (mod 2) has a solution, x2β‰‘βˆ’1 (mod 7) does not (it's a prime of the form 4k+3) so there will be no solutions modulo 14 either.

But if I am looking (mod 65), since 65=5β‹…13 and x2β‰‘βˆ’1 has solutions both (mod 5) and (mod 13), I can use the Chinese Remainder Theorem to combine them:

  • x≑2 (mod 5)

  • x≑5 (mod 13)

We combine them thus:

x≑2β‹…13β‹…(13βˆ’1 (mod 5))+5β‹…5β‹…(5βˆ’1 (mod 13))
≑26β‹…2+25β‹…8≑252≑57 (mod 65)

And that also is consistent with the computations in the Sage interact above!

As we can see, we can usually obtain a complete answer to this and similar questions by using Theorem 7.2.3 and Theorem 5.3.2.

Returning to square roots, it should be clear that, as far as just determining whether a solution exists, all we need to examine is prime moduli and powers of two. Everything else is taken care of by previous work.

To avoid the complication of powers of two, and because of a similar complication in completing the square in Algorithm 16.2.4, in the rest of this chapter and the next we will focus on the case of odd moduli. It can be a useful classroom exercise to explore both when solutions exist and the actual square roots modulo 2e; else see [C.2.1, Theorem 7.14, Examples 7.13-14].