0% found this document useful (0 votes)
458 views7 pages

Chinese Remainder Theorem

The document provides an overview of the Chinese Remainder Theorem and its applications in mathematical olympiads. It begins with an informal statement of the theorem and discusses three perspectives on it: construction, lifting, and destruction. Examples are then given to illustrate how each perspective can be applied to solve problems, even when the theorem itself is not explicitly stated. The examples involve constructing large numbers with specific properties, lifting divisibility statements to deduce size results, and reducing problems modulo primes to find their essence. Overall, the document aims to demonstrate how internalizing the intuition behind the Chinese Remainder Theorem can help solve difficult problems.

Uploaded by

Chaitanya Gaur
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
458 views7 pages

Chinese Remainder Theorem

The document provides an overview of the Chinese Remainder Theorem and its applications in mathematical olympiads. It begins with an informal statement of the theorem and discusses three perspectives on it: construction, lifting, and destruction. Examples are then given to illustrate how each perspective can be applied to solve problems, even when the theorem itself is not explicitly stated. The examples involve constructing large numbers with specific properties, lifting divisibility statements to deduce size results, and reducing problems modulo primes to find their essence. Overall, the document aims to demonstrate how internalizing the intuition behind the Chinese Remainder Theorem can help solve difficult problems.

Uploaded by

Chaitanya Gaur
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 7

The Chinese Remainder Theorem

Evan Chen
February 3, 2015

The Chinese Remainder Theorem is a theorem only in that it is useful and requires
proof. When you ask a capable 15-year-old why an arithmetic progression with common
difference 7 must contain multiples of 3, they will often say exactly the right thing.
Dominic Yeo, Eventually Almost Everywhere

This article, aimed at olympiad students, focuses on the application of the Chinese
Remainder Theorem in mathematical olympiads.

1 Warm-Up
Problem 1.1 (USAMO 2008/1). Prove that for each positive integer n, there are pairwise
relatively prime integers k0 , k1 , . . . , kn , all strictly greater than 1, such that k0 k1 . . . kn 1
is the product of two consecutive integers.

2 The Chinese Remainder Theorem


First let me write down what the formal statement of the Chinese Remainder Theorem.

Theorem 2.1 (Chinese Remainder Theorem)


Let m1 , . . . , mk be pairwise relatively prime positive integers, and let

M = m1 . . . mk .

Then for every k-tuple (x1 , . . . , xk ) of integers, there is exactly one residue class x
(mod M ) such that

x x1 (mod m1 )
x x2 (mod m2 )
..
.
x xk (mod mk ).

As explained in the opening quote, the theorem above has no real substance. It really
is just formalizing a piece of intuition1 that you could easily have picked up on your
own from doing enough problems. But thats not to say the theorem is useless it is
useful because the intuition behind it is useful. To see how versatile this notion is, we
can phrase the theorem in the following ways.

Email: contact@evanchen.cc
1
Muirhead and linearity of expectation are more examples of this kind of flavor.

1
Evan Chen (February 3, 2015) The Chinese Remainder Theorem

Chinese Remainder Theorem A (Construction)


Given the xi s and mi s, there exists an x which simultaneously satisfies each

x xi (mod mi ) for all i.

In this perspective, we are given the mi and want to build up an x. Note that the
resulting x is probably huge, just because the number M is large and the answer is
unique modulo M . Moreover there isnt an especially easy way to write down the value
of x. In other words, this perspective talks about things we cant actually see. The
pessimist might be disappointed now, but the optimist is overjoyed this perspective
lets us access otherwise hard-to-reach numbers with properties we want.
Somewhat related is the following.

Chinese Remainder Theorem B (Lifting)


If x k (mod mi ) for every i, then we actually have x k (mod M ).

Note again that M is huge. Surprisingly, this is a good way to get size results: since M
is often very large, x is often very large too.
Finally, to talk about things not-huge, we have the following.

Chinese Remainder Theorem C (Destruction)


To understand x (mod M ), we only need to understand x (mod mi ) for every i. In
particular, we can reduce any statement modulo M to a statement modulo each of
its prime powers.

This means that given an M we can reduce the problem.


(And before anyone asks, I made these names up.)

3 Example Problems
As with any vacuous theorem, its important that we internalize these ideas. The
Chinese Remainder Theorem is a very natural, intuitive concept, and therefore it is used
most effectively when we dont think explicitly about having to use it.
Lets look at some examples of how we can apply each of these perspectives. The key
is that while the Chinese Remainder Theorem is used in all the problems, it is not really
the key step to the solution; rather, it serves as a way for us to see what to do. It really
ought to be called a lemma, but blame history. . .

3.1 Construction
Lets begin by looking at the warm-up problem.

Example 3.1 (USAMO 2008/1)


Prove that for each positive integer n, there are pairwise relatively prime integers
k0 , k1 , . . . , kn , all strictly greater than 1, such that k0 k1 . . . kn 1 is the product of
two consecutive integers.

2
Evan Chen (February 3, 2015) The Chinese Remainder Theorem

Proof. Essentially we are being asked to show that t(t + 1) + 1 = k0 . . . kn can have
arbitrarily many prime factors. Indeed, if it suffices to prove that for any n there exists a
t such that P (t) = t2 + t + 1 has more than n + 1 prime divisors.
Now how do we go about getting that many prime divisors? We want to construct a t
such that P (t) 0 (mod pi ) for some n primes p0 , . . . , pn . But for this, we just have to
construct a ti such that P (ti ) 0 (mod pi ) for every i. Once thats done, the Chinese
Remainder Theorem enables us to select at t such that t ti (mod pi ) for all i, meaning
P (t) P (ti ) 0 (mod pi ).
In other words, the problem just reduces to proving that there are infinitely many
primes dividing some number of the form t2 + t + 1. So, weve managed to eliminate
almost all the structure of the problem before using the Chinese Remainder Theorem,
leading us to this heart of the problem. And to prove this, we simply have to mimic
Euclids classical proof of the infinitude of primes. Assume for contradiction that P is a
full set of primes. Take the product N of all primes in P and look at N 2 + N + 1. It
cannot be divisible by any prime in P, contradiction.

Lets see an even more extreme example.

Example 3.2 (TSTST 2012/3)


Let N be the set of positive integers. Let f : N N be a function satisfying the
following two conditions:

(a) f (m) and f (n) are relatively prime whenever m and n are relatively prime.

(b) n f (n) n + 2012 for all n.

Prove that for any natural number n and any prime p, if p divides f (n) then p
divides n.

Proof. Fix n and p, and assume for contradiction p - n.


The idea is that I will construct large integers N such that f (N ) = N . Here is
how: pick 2012 2013 distinct primes qi,j > n + p + 2013 for every i = 1, . . . , 2012 and
j = 0, . . . , 2012, and use it to fill in the following table:

N +1 N +2 ... N + 2012
M q0,1 q0,2 ... q0,2012
M +1 q1,1 q1,2 ... q1,2012 .
.. .. .. .. ..
. . . . .
M + 2012 q2012,1 q2012,2 ... q2012,2012

By the Chinese Remainder Theorem, we can construct N such that N + 1 0 (mod qi,1 )
for every i, and similarly for N + 2, and so on. Moreover, we can also tack on the
condition N 0 (mod p) and N 1 (mod n). Notice that N cannot be divisible by any
of the qi,j s, since the qi,j s are greater than 2012.
After weve chosen N , we can pick M such that M 0 (mod q0,j ) for every j, and
similarly M + 1 0 (mod q1,j ), et cetera. Moreover, we can tack on the condition M 1
(mod N ).
What does this do? We claim that f (N ) = N now. Indeed, since M 1 (mod N )
we have gcd(M, N ) = 1. So f (M ) and f (N ) are relatively prime by the condition. But
look at the table! The table tells us that f (M ) must have a common factor with each of
N + 1, . . . , N + 2012. So the only possibility is that f (N ) = N .

3
Evan Chen (February 3, 2015) The Chinese Remainder Theorem

Now were basically done. Since N 1 (mod n), we have gcd(N, n) = 1 and hence
1 = gcd(f (N ), f (n)) = gcd(N, f (n)). But p | N and p | f (n), contradiction.

Notice how grotesquely large the numbers involved in the proof are. The size of M
is on the order of
2
Y
qi,j N > 20132013 .
i,j

Playing with numbers that big seems obscene, but it solves the problem. Thats the
power of the Chinese Remainder Theorem; we can access large numbers we couldnt
access otherwise. All you have to do is let go of your sense of decency! In the words of
Paul Zeitz: good, obedient boys and girls solve fewer problems than naughty
and mischievous ones.

3.2 Lifting
Remember the remark about size? Lets see how it applies here.

Example 3.3 (Harder than USAMO 2014/6)


Prove that there is a constant c > 0 with the following property: If a, b, n are positive
integers such that gcd(a + i, b + j) > 1 for all i, j {0, 1, . . . n}, then

min{a, b} > (cn)n .

Whats interesting about this problem? The hypothesis involves nothing but divisibilities.
The conclusion involves nothing but size. How are these two things related? In general,
we just dont know much about multiplicative structure, and that leads us to suspect
that the solution involves the Chinese Remainder Theorem in its Lifting form: if we can
show, for example, a + i 0 (mod something really big), that would do the trick. We
can see this running in the solution sketch below.

Sketch of Proof. The idea is as follows. We know for each 0 i, j n, some prime divides
both a + i and b + j. Lets write down all the information we have in an (N + 1) (N + 1)
table in the obvious manner. Our table might look something like:

. 2 . 2 . 2 . 2 . 2 .
. . 5 7 . . . 5 . . 7
. 2 3 2 . 2 . 2 3 2 .
. . . . . . . . . . .
. 2 . 2 . 2 . 2 . 2 .
. . 3 . . 3 . . 3 . .
. 2 5 2 . 2 . 2 . 2 .
. . . . . . . . . . .
. 2 3 2 . 2 . 2 3 2 7
. . . . . . . . . . .
. 2 . 2 . 2 . 2 . 2 .

or something like that. Notice how the primes fill in a evenly spaced subgrid. Thus a
prime p takes up at most a fraction p2 of the entire grid. But p p2 is not very big; in
P

fact, its less than 12 . What this means is that well run out of small primes very quickly,
and the table will have a lot of big primes.

4
Evan Chen (February 3, 2015) The Chinese Remainder Theorem

P l n+1 m2
With enough calculations with p , you can show that at least half the table
consists of primes greater than 0.001n2 . So some column must have at least half its
entries as primes greater than 0.001n2 . Hence a + i is divisible by the product of all these
primes which is greater than (0.001n2 )n/2 = (cn)n . Thats all there is to it!

This problem was a USAMO #6, and it looked scary, but was it that bad? The ideas
behind it are very natural: try to fill up a grid with primes, realize that there are not
enough small primes, and then use CRT to connect this and get a size result.

3.3 Destruction
These examples are probably less interesting than the previous few because the reduction
does not make the problem much different. Often the destructive form of CRT just
consists of appending the line By the Chinese Remainder Theorem, it suffices to consider
prime powers and some appropriate embellishments at the end of the solution.
Here is a silly example. There are nicer examples in the practice problems.

Example 3.4 (Math Prize Olympiad 2010)


Prove that for every positive integer n, there exists integers a and b such that
4a2 + 9b2 1 is divisible by n.

Proof. It suffices to find such an a and b modulo any prime power.


For 2k , take a 0 (mod 2k ) and b 31 (mod 2k ).
For any other pk , take a 21 (mod pk ) and b 0 (mod pk ).

5
Evan Chen (February 3, 2015) The Chinese Remainder Theorem

4 Practice Problems
Problem 4.1 (IMO 1989). Prove that for every positive integer n, there exists n
consecutive positive integers such that none of them is a power of a prime.

Problem 4.2. Let n be a positive integer. Determine, in terms of n, the number of


x {1, 2, . . . , n} for which x2 x (mod n).

Problem 4.3 (IMO 2009/1). Let n be a positive integer and let a1 , a2 , a3 , . . . , ak (here
k 2) be distinct integers in the set {1, 2, . . . , n} such that n divides ai (ai+1 1) for
i = 1, 2, . . . , k 1. Prove that n does not divide ak (a1 1).

Problem 4.4 (APMO 2009/4). Prove that for any positive integer k, there exists an
arithmetic progression
a1 a2 ak
, , ...,
b1 b2 bk
of rational numbers, where ai , bi are relatively prime positive integers for each i =
1, 2, . . . , k, and moreover the 2k numbers a1 , . . . , ak , b1 , . . . , bk are pairwise distinct.

Problem 4.5 (ELMO Shortlist, Evan Chen). Find all triples (a, b, c) of positive integers
such that if n is a positive integer not divisible by any prime less than 2014, then n + c
divides an + bn + n.

Problem 4.6. Let a > b > c 3 be integers. Given that a | bc + b + c, b | ca + c + a


and c | ab + a + b, prove that at least one of a, b, c is not prime.

Problem 4.7 (USA December TST, Iurie Boreico). Prove that for every positive integer
n, there exists a set S of n positive integers such that for any two distinct a, b S, a b
divides a and b but none of the other elements of S.

Problem 4.8 (NIMO, Evan Chen). For a finite set X define


X Y
S(X) = x and P (x) = x.
xX xX

Let A and B be two finite sets of positive integers such that |A| = |B|, P (A) = P (B)
and S(A) 6= S(B). Suppose for any n A B and prime p dividing n, we have p36 | n
and p37 - n. Prove that
|S(A) S(B)| > 5 107 .

5 Challenges
Problem 5.1 (ELMO 2013/5, Andre Arslan). For what polynomials P (n) with integer
coefficients can a positive integer be assigned to every lattice point in R3 so that for every
integer n 1, the sum of the n3 integers assigned to any n n n grid of lattice points
is divisible by P (n)?

Problem 5.2 (ELMO 2013/3, Victor Wang). Let m1 , m2 , . . . , m2013 > 1 be 2013 pairwise
relatively prime positive integers and A1 , A2 , . . . , A2013 be 2013 (possibly empty) sets
with Ai {1, 2, . . . , mi 1} for i = 1, 2, . . . , 2013. Prove that there is a positive integer
N such that
N (2 |A1 | + 1) (2 |A2 | + 1) (2 |A2013 | + 1)
and for each i = 1, 2, . . . , 2013, N
/ Ai (mod mi ).

6
Evan Chen (February 3, 2015) The Chinese Remainder Theorem

6 Hints
4.1. Force pi qi | x + i.

4.2. Solve the problem for prime powers dividing n. The answer is a power of two.

4.3. Proceed by contradiction. Look at a prime power pr | n, and show that either
ai 0 (mod pr ) i or ai 1 (mod pr ) i.

4.4. Pick x, N such that


x+1 x+k
, ...,
N N
works after reducing to lowest terms. Force exactly one prime to cancel in each
reduction.

4.5. Pick n modulo p and p 1 for a large prime p. Force p to divide a constant.

4.6. Simons Favorite.

4.7. For n = 3, x1 |{z} x2 |{z} x3 gives {10, 12, 15}. For n = 4, x1 |{z} x2 |{z} x3 |{z } x4 .
2 3 60 90 7

4.8. Show its divisible by 23 33 5 7 13 19 37.

5.1. Look at the one-dimensional case first; the answer is the same.

5.2. Pick ti for which ti 1 (mod mi ) and ti 0 (mod mj ) for i 6= j. Look at numbers
of the form X
bi ti
where bi Bi , and Bi is selected so that for any x, y Bi we have x y
/ Ai .
Show greedily that we can have
mi
|Bi | .
2 |Ai | + 1

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy