2.1 Integers, Divisibility & Prime Factorization
Key Takeaways
- The prime numbers under 50 are 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, and 47; note that 1 is neither prime nor composite, and 2 is the only even prime number.
- Divisibility shortcuts save crucial time on the GRE: a number is divisible by 3 if the sum of its digits is divisible by 3, by 4 if its last two digits form a multiple of 4, and by 9 if the sum of its digits is divisible by 9.
- The total number of positive factors of an integer n with prime factorization p1^a * p2^b * p3^c... is equal to (a + 1)(b + 1)(c + 1)...
- For any two positive integers a and b, the product of their Greatest Common Divisor (GCD) and Least Common Multiple (LCM) equals the product of the numbers: GCD(a, b) * LCM(a, b) = a * b.
- In integer division, Dividend = (Divisor * Quotient) + Remainder, where the remainder r must satisfy 0 <= r < Divisor.
2.1 Integers, Divisibility & Prime Factorization
Number properties form the foundational bedrock of GRE Quantitative Reasoning. Questions testing integer properties, divisibility, prime numbers, and remainders appear frequently across both Multiple-Choice and Quantitative Comparison (QC) formats. Mastering these rules enables you to solve complex problems rapidly without relying on tedious brute-force calculations.
Integer Definitions & Core Properties
An integer is any whole number in the set ${\dots, -3, -2, -1, 0, 1, 2, 3, \dots}$. Integers include positive whole numbers, negative whole numbers, and zero.
GRE Quantitative Comparison Trap: Never assume a variable represents an integer unless the problem explicitly states that $x$ or $y$ is an integer. If a question states "$x > 0$," $x$ could be a fraction like $\frac{1}{2}$ or an irrational number like $\sqrt{2}$.
Essential Subsets of Real Numbers
- Positive Integers: ${1, 2, 3, 4, \dots}$ (also called counting numbers or natural numbers).
- Non-Negative Integers: ${0, 1, 2, 3, 4, \dots}$ (includes zero).
- Zero ($0$): Zero is an even integer. It is neither positive nor negative. Any number multiplied by zero is zero ($n \times 0 = 0$), and division by zero is undefined.
Divisibility Rules (2 through 10)
An integer $a$ is divisible by an integer $b$ (where $b eq 0$) if there exists an integer $q$ such that $a = b \times q$, leaving a remainder of $0$. Below is the definitive reference table for divisibility test shortcuts required on the GRE:
| Divisor | Divisibility Rule | Example |
|---|---|---|
| 2 | The last digit is even ($0, 2, 4, 6, 8$). | $3,458$ ends in $8$ (even) $\rightarrow$ Divisible. |
| 3 | The sum of all digits is divisible by $3$. | $7,821 \rightarrow 7+8+2+1 = 18$ (divisible by 3) $\rightarrow$ Divisible. |
| 4 | The number formed by the last two digits is divisible by $4$. | $5,324 \rightarrow$ last two digits $24$ ($24 \div 4 = 6$) $\rightarrow$ Divisible. |
| 5 | The last digit is $0$ or $5$. | $9,845$ ends in $5 \rightarrow$ Divisible. |
| 6 | The number is divisible by both $2$ and $3$. | $4,116$ is even and sum of digits $4+1+1+6=12$ (divisible by 3) $\rightarrow$ Divisible. |
| 8 | The number formed by the last three digits is divisible by $8$. | $19,128 \rightarrow 128 \div 8 = 16 \rightarrow$ Divisible. |
| 9 | The sum of all digits is divisible by $9$. | $63,720 \rightarrow 6+3+7+2+0 = 18$ (divisible by 9) $\rightarrow$ Divisible. |
| 10 | The last digit is $0$. | $4,570$ ends in $0 \rightarrow$ Divisible. |
Prime Numbers & Prime Factorization
A prime number is a positive integer greater than $1$ that has exactly two distinct positive divisors: $1$ and itself. A positive integer greater than $1$ that is not prime is a composite number.
Crucial Prime Number Facts
- $1$ is NEITHER prime nor composite. It has only one positive divisor ($1$).
- $2$ is the ONLY even prime number. Every other even number is divisible by $2$ and thus composite.
- $2$ is the smallest prime number.
- Primes under 50 (Memorize these 15 numbers):
Prime Factorization Trees
Every composite number can be uniquely expressed as a product of prime numbers (Fundamental Theorem of Arithmetic). To build a prime factorization tree, break the number down into any two factors and continue breaking non-prime factors down until only primes remain.
Worked Example: Prime Factorization of 360
Formula for Total Number of Positive Factors
If the prime factorization of a positive integer $N$ is: where $p_1, p_2, p_3$ are distinct prime factors, then the total number of positive factors of $N$ is given by:
Example: For $360 = 2^3 \times 3^2 \times 5^1$, the number of factors is $(3+1)(2+1)(1+1) = 4 \times 3 \times 2 = 24$ factors.
Greatest Common Divisor (GCD) & Least Common Multiple (LCM)
- Greatest Common Divisor (GCD): The largest positive integer that divides two or more integers without a remainder (also called Highest Common Factor, HCF).
- Least Common Multiple (LCM): The smallest positive integer that is a multiple of two or more integers.
Prime Factorization Method for GCD and LCM
- Express each number in its prime factorization.
- For GCD: Multiply the lowest power of each common prime factor.
- For LCM: Multiply the highest power of every prime factor present in any of the numbers.
Worked Example: Finding GCD and LCM of 48 and 180
- Prime Factorization of $48$: $48 = 16 \times 3 = 2^4 \times 3^1$
- Prime Factorization of $180$: $180 = 18 \times 10 = 2^2 \times 3^2 \times 5^1$
Key Formula: For any two positive integers $a$ and $b$: Verification: $12 \times 720 = 8,640$, and $48 \times 180 = 8,640$.
Even & Odd Parity Rules
Parity refers to whether an integer is even or odd. Remember: Zero ($0$) is even, negative numbers can be even or odd (e.g., $-4$ is even, $-7$ is odd).
Arithmetic Operations with Parity
| Operation | Rule | Example |
|---|---|---|
| Even $\pm$ Even | Even | $6 + 4 = 10$ |
| Odd $\pm$ Odd | Even | $7 + 3 = 10$ |
| Even $\pm$ Odd | Odd | $6 + 3 = 9$ |
| Even $\times$ Even | Even | $4 \times 6 = 24$ |
| Even $\times$ Odd | Even | $4 \times 5 = 20$ |
| Odd $\times$ Odd | Odd | $5 \times 7 = 35$ |
| $(\text{Even})^k$ ($k > 0$) | Even | $2^4 = 16$ |
| $(\text{Odd})^k$ ($k \ge 0$) | Odd | $3^3 = 27$ |
GRE Strategy Tip: In Quantitative Comparison questions involving parity, test $0$ as an even number. If an expression involves products, remember that a single even factor makes the entire product even!
Remainder Theory
When an integer $N$ (the dividend) is divided by a positive integer $d$ (the divisor), it yields an integer $q$ (the quotient) and a non-negative integer $r$ (the remainder):
Key Remainder Properties
- Range Restriction: The remainder $r$ must always be greater than or equal to $0$ and strictly less than the divisor $d$.
- Modular Arithmetic Rules:
- $(a + b) \pmod d = ((a \pmod d) + (b \pmod d)) \pmod d$
- $(a \times b) \pmod d = ((a \pmod d) \times (b \pmod d)) \pmod d$
- Cyclicity: Powers of numbers produce repeating patterns of remainder cycles when divided by a fixed base. For example, powers of $7$ mod $5$ follow a cycle of length 4: $7^1 \equiv 2, 7^2 \equiv 4, 7^3 \equiv 3, 7^4 \equiv 1$ (mod 5).
What is the total number of positive factors of the integer 360?
What is the remainder when 7^83 is divided by 5?
Two automated traffic signals flash at regular intervals of 18 seconds and 24 seconds, respectively. If both signals flash simultaneously at exactly 12:00:00 PM, after how many seconds will they next flash simultaneously?
If a and b are integers such that the expression (3a + 5b) is an odd integer, which of the following statements MUST be true?