We start from a problem:
Problem: Find the number of elements in such that it is congruent to
module
for some integer
.
Solution. The problem is the same as finding the number of solutions to
Using Chinese Remainder Theorem, the problem reduces to the system of equations
Our goal, thus, is to find the number of solutions for each of the equation. We start by looking at the first one
Such equation is pretty hard to solve. But what if we only consider ? By finding solutions in this set, we are allowed to reduce the range of our solution set to the module class of these solutions. Then how do we extend it? Here is where Hensel’s Lemma comes in.
Hensel’s Lemma Let be a polynomial with integer coefficients. Let
be a positive integer, and
an integer such that
. Then if
, there is an unique integer
such that
and
. If
, then for all of the
such that
,
.
Proof. We want something similar to binomial expansion so that we can cancel the terms with . We could think of Taylor Series expansion, and that’s where
comes. Specifically, the polynomial
Therefore,
When , and
, we have
If, on the other hand, that , then
This completes our proof.
Now let’s apply this lemma to the problem. For .
. So we could get that
are solutions. Adding with
. We get
solutions. Similarly, for
,
. This gives us
solutions. Don’t forget
, which has
. In this case, there are
solutions,
. Together with
, there’s a total of
solutions. Therefore, the answer for this problem is
.
Leave a Reply