This document introduces number theory and the greatest common divisor (GCD). It defines key concepts like prime numbers, division, and the Euclidean algorithm for finding the GCD. The Euclidean algorithm uses the fact that the GCD of two numbers a and b is equal to the GCD of b and the remainder of a divided by b. The document provides examples of using the Euclidean algorithm and method 1 (repeated division) and method 2 (working backwards from the definitions) to find the GCD of numbers like 12 and 33. It concludes with applications of GCD in fields like computer organization, coding, and cryptography.