PHD → Number Theory ↓
Elementary Number Theory
Elementary number theory is a branch of mathematics that deals with the properties and relations of numbers, particularly integers. It is called "elementary" because it deals with basic concepts that are foundational to further study in mathematics. Historically, number theory focused on the study of integers and their properties, such as divisibility and primality. The field remains a cornerstone of modern mathematics, captivating mathematicians with its beauty, simplicity, and depth.
1. Basics of numbers
To understand number theory, we must first understand what numbers are. Numbers can be considered basic abstract concepts that we use to count, measure, and label. In elementary number theory, we deal mainly with integers, which are whole numbers that can be positive, negative, or zero.
Let's take a look at some of the basic types of numbers that we often encounter:
- Natural numbers: These are the numbers by which we count naturally like 1, 2, 3, etc.
- Whole numbers: These are the natural numbers including zero, such as 0, 1, 2, 3, etc.
- Integers: These include whole numbers and their negative counterparts, such as -2, -1, 0, 1, 2, etc.
2. Divisibility
Divisibility is a fundamental concept in number theory. An integer a
is divisible by another integer b
if there exists an integer c
such that a = b times c
. If a
is divisible by b
, we say that b
divides a
, or b
is a divisor of a
.
Example:
Consider a = 15
and b = 3
.
15 = 3 times 5
So 3 divides 15.
3. Prime numbers
Prime numbers are the building blocks of integers. A prime number is an integer greater than 1 that has no positive divisors other than 1 and itself. In other words, it cannot be formed by multiplying two smaller natural numbers.
Examples of prime numbers:
- 2
- 3
- 5
- 7
- 11
Each of these numbers cannot be evenly divided by any number other than 1 and itself.
4. Common divisors and multiples
Two important concepts in number theory are common divisors and common multiples.
- Greatest Common Divisor (GCD): The largest number that can divide two or more integers without leaving a remainder.
- Least Common Multiple (LCM): The smallest number that is a multiple of two or more integers.
Example:
Find the GCD and LCM of 12 and 18.
Factors of 12: 1, 2, 3, 4, 6, 12
Factors of 18: 1, 2, 3, 6, 9, 18
Common divisors: 1, 2, 3, 6
So, GCD(12, 18) = 6.
Multiples of 12: 12, 24, 36, 48, ...
Multiples of 18: 18, 36, 54, 72, ...
Common multiples: 36, 72, ...
Hence, LCM(12, 18) = 36.
5. Congruence
Congruence is a way of expressing that two numbers leave the same remainder when divided by another number. If two numbers leave the same remainder when divided by a number, they are said to be congruent with respect to that number. This can be written as:
a equiv b (text{mod} n)
where a
and b
are identical in modulus of n
.
Example:
24 is equivalent to 9 in the ratio of 5, since both have a remainder of 4.
24 equiv 9 (text{mod} 5)
6. Diophantine equations
Diophantine equations refer to polynomial equations where the solutions are restricted to integers. They are named after the ancient Greek mathematician Diophantus. A simple example is the linear Diophantine equation:
ax + by = c
where x
and y
are integers. If the GCD of a
and b
divides c
then the solution exists.
Example:
Solve 3x + 6y = 18
.
The GCD of 3 and 6 is 3, and 3 divides 18, so a solution exists.
A simple solution is x = 0
and y = 3
.
7. Fundamentals of arithmetic
The fundamental theorem of arithmetic states that every integer greater than 1 can be uniquely represented as a product of prime numbers, up to order. This is the basis for many other concepts in number theory.
Example:
Consider the number 60.
60 = 2^2 times 3 times 5
This representation is unique (regardless of the order).
8. Whole numbers
A perfect number is an integer that is the sum of its proper positive divisors, not including itself. The smallest perfect number is 6.
Example:
Consider the number 6.
Divisors of 6: 1, 2, 3
The sum of these divisors is 1 + 2 + 3 = 6
.
9. Euler's totient function
Euler's totient function, denoted as phi(n)
, is a function that returns the number of integers up to n that are coprime with n. Two numbers are coprime if their greatest common divisor is 1.
Example:
Calculate phi(9)
.
Coprime numbers of 9 are 1, 2, 4, 5, 7, 8.
So, phi(9) = 6
.
10. Conclusion
Elementary number theory is the backbone of our understanding of mathematics as it deals with the properties and relationships of integers. Through its basic concepts, such as divisibility, prime numbers, and congruence, we gain insight into more complex and abstract parts of mathematics. These foundational topics not only develop critical thinking and problem-solving skills, but also have applications in cryptography, computer science, and other fields.
As we have seen, this subject is full of interesting problems and theorems, many of which have not only stood the test of time but continue to inspire new generations of mathematicians. While this overview covers the basics of elementary number theory, much awaits exploration in more advanced study, providing a deeper understanding of the beautiful world of integers.