divisibility
if α|β and α|ε, then α|(mβ + nε)
4n2+4n is divisible by 8 for all n
smallest positive linear combination of α and β = gcd(α, β)
every linear combination of α and β is a multiple of gcd(α, β), and vice versa
gcd(α, β) = gcd(β, α mod β); why the euclidean algorithm works
α1|b, α2|b and gcd(α1, α2) = 1 ⇒ α1α2|b
prime numbers
if ρ is prime and ρ|αβ, then ρ|α or ρ|β
if n is composite then there is a prime divisor ≤ √n
there are infinite number of primes
all primes are of the form 4k+1 or 4k+3
there are infinite primes of the form 4k+3
there are infinite primes of the form 3k+2
no prime can be expressed as a4 - b4
for any positive integer n, there are at least n consecutive composite integers
if 2p - 1 is prime, then p is prime
if n > 1 and an - 1 is prime, then a=2
if an + 1 is an odd prime, then a is even and n is a power of 2
if n2+1 is prime, then n2 = 4k
lower bound for Legendre's formula
a powerful number is a product of a square number and a cube number
any integer greater than 6 can be represented as a sum of two relatively prime integers
more gcd
if gcd(α, ε) = 1 and gcd(β, ε) = 1, then gcd(αβ, ε) = 1
if gcd(α, β) = 1, then gcd(αβ, ε) = gcd(α, ε) * gcd(β, ε)
δ = gcd(α, β) ⇒ gcd(α/δ, β/δ) = 1
gcd(α1, α2, α3, ..., αn) ⇒ gcd(gcd(α1, α2), α3, ..., αn)
if gcd(x, y) divides (x + y), then there are infinite values of x and y
if gcd(α, β) = 1, then gcd(α+β, α-β) is either 1 or 2
if gcd(α, β) = δ and gcd(α, ε) = δ, then gcd(α, β, ε) = δ
lcm
modular arithmetic
(α ≡ β mod M) ∧ (ε ≡ δ mod M) ⇒ (α + ε ≡ β + δ mod M)
(α ≡ β mod M) ∧ (ε ≡ δ mod M) ⇒ (αε ≡ βδ mod M)
(α ≡ β mod M) ∧ (ε ≡ δ mod M) ∧ ε|α ∧ δ|β ⇒ (α/ε ≡ β/δ mod M)
(α ≡ β mod M) ∧ (n|M) ⇒ (α ≡ β mod nM)
if c is an odd integer, then (c2 ≡ 1 mod 4) and (c2 ≡ 1 mod 8)
(c ∈ Z) ∧ (α ≡ β mod M) ⇒ (cα ≡ cβ mod cM)
d|α ∧ d|β ∧ d|M ∧ α ≡ β mod M ⇒ (α/d ≡ β/d mod M/d)
(εα ≡ εβ mod M) ⟺ (α ≡ β mod M/(ε, M))
(α ≡ β mod M) ⇒ (β, M) = (α, M)
if (α ≡ β mod M), (α ≡ β mod N) and gcd(M, N) = 1, then (α ≡ β mod MN)
if n is odd and (3 ∤ n), then (n2 ≡ 1 mod 24)
ax ≡ b mod m has a solution if and only if gcd(a, m)|b
solution of ax ≡ b mod m (if gcd(a, m)|b)
If p is prime ∧ (a2 ≡ b2 mod p) ⇒ a ≡ ±b mod p
If p is prime ∧ (a2 ≡ a mod p) ⇒ (a ≡ 0) or (a ≡ 1)
existence and uniqueness of modular inverse if gcd(a, m) = 1
divisibility rules
an integer is divisible by 2 if its last digit is divisible by 2
an integer is divisble by 3 if the sum of its digits is divisible by 3
an integer is divisble by 7 if the alternating sum of blocks of three from is divisible by 7
factorials, permutations and combinations
using combinations to find a number in the Pascal's triangle
number of ways of arranging n objects with k identical objects
sequence and series
finding a term in an arithmetic sequence
finding a term in a geometric sequence
the sum of an arithmetic series
the sum of a geometric series with finite terms
the sum to infinity of a geometric series
sum of the first n positive integers
sum of the squares of the first n positive integers
more congruence
1 + 2 + 3 + ... + (n-1) ≡ 0 mod n if and only if n is odd
12 + 22 + 32 + ... + (n-1)2 ≡ 0 mod n ⇒ n ≡ ±1 mod 6
13 + 23 + 33 + ... + (n-1)3 ≡ 0 mod n ⇒ n is not congruent to 2 mod 4
Let p be prime, then 2(p-3)! ≡ -1 mod p
solution to x2 ≡ -1 mod p if p = 2 or p ≡ 1 mod 4