Achievable logoAchievable logo
Praxis Core: Math (5733)
Sign in
Sign up
Purchase
Textbook
Practice exams
Support
How it works
Exam catalog
Mountain with a flag at the peak
Textbook
Introduction
1. Number and quantity
1.1 Integers, decimals, and fractions
1.2 Ratios, proportions, and percents
1.3 Place value and decimal representation
1.4 Properties of whole numbers
1.5 Units of measurement
1.6 Working with numbers
2. Data analysis, statistics, and probability
3. Algebra and geometry
Wrapping up
Achievable logoAchievable logo
1.4 Properties of whole numbers
Achievable Praxis Core: Math (5733)
1. Number and quantity
Our Praxis Core: Math course is currently in development and is a work-in-progress.

Properties of whole numbers

8 min read
Font
Discuss
Share
Feedback

This section covers the core building blocks of number theory: whole numbers, factors, multiples, prime numbers, and divisibility rules. These ideas show up often on the Praxis Core exam and support skills like simplifying fractions, solving ratio problems, spotting patterns, and working with algebraic expressions. When you know how numbers are built, you can break them apart efficiently and use quick rules to speed up computation.

Definitions
Whole numbers
Whole numbers include 0 and all positive integers: 0,1,2,3,4,5,… They do not include negative numbers, fractions, or decimals.

Factors

Factors tell you which smaller whole numbers multiply to make a larger number. Factors matter any time you simplify fractions, compare ratios, or break a number into primes. When you find factors, you’re uncovering the “parts” a number can be split into.

Definitions
Factor
A factor of a whole number is a number that divides it evenly, with no remainder.

Factors come in pairs whose product equals the original number. Once you’ve checked all possible factors up to the square root, you’ve automatically found the larger factors as the matching partners.

Divisibility rules

Divisibility rules let you check whether one number divides another without doing long division. They’re based on digit patterns, so they’re fast and help reduce arithmetic mistakes.

Useful rules

  • Divisible by 2: Last digit is 0,2,4,6,8
  • Divisible by 3: Sum of digits divisible by 3
  • Divisible by 4: Last two digits form a number divisible by 4
  • Divisible by 5: Last digit is 0 or 5
  • Divisible by 6: Divisible by both 2 and 3
  • Divisible by 8: Last three digits form a number divisible by 8
  • Divisible by 9: Sum of digits divisible by 9
  • Divisible by 10: Last digit is 0

These rules are especially useful when you’re simplifying fractions or breaking numbers into prime factors.

Using divisibility to find factors

Divisibility rules give you a systematic way to factor numbers: test small primes, divide, and keep going until what’s left is prime.

Example: Find factors of 36

We start with small prime numbers. Because 36 is even, it is divisible by 2.

  • 36÷2=18 - this shows that 2 and 18 are a factor pair of 36.
  • 18÷2=9 - dividing again by 2 shows that 36=2×2×9.

At this point, 9 is no longer divisible by 2, so we switch to the next smallest prime, 3.

  • 9÷3=3
  • 3÷3=1

This confirms that 9=3×3. Combining all the prime factors used gives the prime factorization: 36=22×32

To list all factors, find every pair that multiplies to 36: (1,36), (2,18), (3,12), (4,9), (6,6).

Answer: Factors: 1,2,3,4,6,9,12,18,36

Prime factorization shows the “building blocks” of a number, but it doesn’t automatically list every factor. To list all factors, you still have to combine the prime factors in all possible ways. That’s why a number with a short prime factorization can still have many total factors.

Factor trees

Factor trees give you a visual way to break a number into primes. Each branch splits a number into smaller factors until only prime numbers remain.

Definitions
Factor tree
A diagram that splits a number into factors until only prime numbers remain.

Example: Factor tree for 36

Prime factorization: 36=22×32

Factor tree for 36
Factor tree for 36

Example: Factor tree for 60

Prime factorization: 60=22×3×5

Factor tree for 60
Factor tree for 60

Common factors, GCF, and GCD

Common factors are factors shared by two or more numbers. The greatest common factor (GCF) is the largest shared factor, which is why it’s so useful for simplifying fractions and reducing ratios. The term greatest common divisor (GCD) means the same thing as GCF - “factor” and “divisor” are two names for a number that divides another number evenly.

Definitions
Common factor
A factor shared by two or more numbers
Greatest common factor (GCF) / Greatest common divisor (GCD)
The largest whole number that divides each of the given numbers evenly

A reliable method for finding the GCF or GCD:

  1. Write prime factorizations of each number.
  2. Identify the primes they have in common.
  3. Use the smallest exponent of each shared prime.
  4. Multiply these together.

Watch out - GCF vs. LCM: Both use prime factorizations, but they work in opposite directions. For the GCF, take only the shared primes and use the smallest exponent of each. For the LCM, take all primes that appear (in either number) and use the largest exponent of each. Mixing these up is one of the most common mistakes on this topic.

Example: GCF of 48 and 180

  • 48=24×3
  • 180=22×32×5
  • Shared lowest powers: 22×3=12

Answer: 12

Multiples and the least common multiple (LCM)

Multiples “expand outward” from a number by repeated multiplication. The LCM is the smallest number that both values divide into evenly.

Definitions
Multiple
A multiple of n is a product n×k where k is a positive integer. The multiples of 5 are 5,10,15,20,…
Common multiple
A number that is a multiple of two or more values
Least common multiple (LCM)
The smallest positive common multiple

Factors and multiples work in opposite directions: the factors of 12 are 1,2,3,4,6,12 - they all divide in evenly and are ≤12. The multiples of 12 are 12,24,36,48,… - they are built by multiplying out and are all ≥12. A factor divides in; a multiple is built out.

Example: LCM of 8 and 18

  • 8=23
  • 18=2×32
  • LCM uses highest powers: 23×32=72

Answer: 72

Even and odd numbers

Even and odd numbers describe parity, which shows up in patterns, divisibility, and algebra.

  • Even: divisible by 2; form 2k
  • Odd: not divisible by 2; form 2k+1

These definitions explain many common patterns. For example, adding two odd numbers always gives an even result, and multiplying an even number by any whole number always gives an even product.

Prime numbers

Prime numbers are the basic “atoms” of number theory. Every whole number greater than 1 is either prime or composite.

Definitions
Prime number
A number greater than 1 with exactly two factors: 1 and itself

Common pitfalls with prime numbers:

  • 1 is not prime. It has only one factor (itself), so it doesn’t meet the definition.
  • 2 is the only even prime. Every other even number is divisible by 2, giving it at least three factors.

Testing for primality

To test whether a number is prime, check divisibility using primes up to n​.

Sidenote
How factor pairs work with square roots

Every factor comes in a pair: if d divides N, then N/d is the partner. One factor in each pair must be less than or equal to N​. Once you pass N​, all larger factors already appeared as the “other half” of a smaller factor.

So checking primes up to n​ is enough to confirm whether a number is prime.

Example: Is 37 prime?

  • 37​≈6.08, so we only need to test primes up to 6: that’s 2, 3, and 5.
  • 37 is odd, so it’s not divisible by 2.
  • Digit sum: 3+7=10, which is not divisible by 3.
  • 37 doesn’t end in 0 or 5, so it’s not divisible by 5.
  • No prime up to 37​ divides 37.

Answer: 37 is prime

  • Factors divide numbers evenly, and prime factorization reveals the building blocks of whole numbers.
  • The greatest common factor (GCF) or greatest common divisor (GCD) is the largest shared divisor and is essential for simplifying fractions and ratios.
  • The least common multiple (LCM) identifies the smallest shared multiple and is important for matching denominators.
  • Parity (even or odd) and prime structure help predict how numbers behave.
  • Sequences describe numerical patterns: arithmetic uses repeated addition, geometric uses repeated multiplication, and recursive formulas show how each term follows from the previous one.

Sign up for free to take 5 quiz questions on this topic

All rights reserved ©2016 - 2026 Achievable, Inc.

Properties of whole numbers

This section covers the core building blocks of number theory: whole numbers, factors, multiples, prime numbers, and divisibility rules. These ideas show up often on the Praxis Core exam and support skills like simplifying fractions, solving ratio problems, spotting patterns, and working with algebraic expressions. When you know how numbers are built, you can break them apart efficiently and use quick rules to speed up computation.

Definitions
Whole numbers
Whole numbers include 0 and all positive integers: 0,1,2,3,4,5,… They do not include negative numbers, fractions, or decimals.

Factors

Factors tell you which smaller whole numbers multiply to make a larger number. Factors matter any time you simplify fractions, compare ratios, or break a number into primes. When you find factors, you’re uncovering the “parts” a number can be split into.

Definitions
Factor
A factor of a whole number is a number that divides it evenly, with no remainder.

Factors come in pairs whose product equals the original number. Once you’ve checked all possible factors up to the square root, you’ve automatically found the larger factors as the matching partners.

Divisibility rules

Divisibility rules let you check whether one number divides another without doing long division. They’re based on digit patterns, so they’re fast and help reduce arithmetic mistakes.

Useful rules

  • Divisible by 2: Last digit is 0,2,4,6,8
  • Divisible by 3: Sum of digits divisible by 3
  • Divisible by 4: Last two digits form a number divisible by 4
  • Divisible by 5: Last digit is 0 or 5
  • Divisible by 6: Divisible by both 2 and 3
  • Divisible by 8: Last three digits form a number divisible by 8
  • Divisible by 9: Sum of digits divisible by 9
  • Divisible by 10: Last digit is 0

These rules are especially useful when you’re simplifying fractions or breaking numbers into prime factors.

Using divisibility to find factors

Divisibility rules give you a systematic way to factor numbers: test small primes, divide, and keep going until what’s left is prime.

Example: Find factors of 36

We start with small prime numbers. Because 36 is even, it is divisible by 2.

  • 36÷2=18 - this shows that 2 and 18 are a factor pair of 36.
  • 18÷2=9 - dividing again by 2 shows that 36=2×2×9.

At this point, 9 is no longer divisible by 2, so we switch to the next smallest prime, 3.

  • 9÷3=3
  • 3÷3=1

This confirms that 9=3×3. Combining all the prime factors used gives the prime factorization: 36=22×32

To list all factors, find every pair that multiplies to 36: (1,36), (2,18), (3,12), (4,9), (6,6).

Answer: Factors: 1,2,3,4,6,9,12,18,36

Prime factorization shows the “building blocks” of a number, but it doesn’t automatically list every factor. To list all factors, you still have to combine the prime factors in all possible ways. That’s why a number with a short prime factorization can still have many total factors.

Factor trees

Factor trees give you a visual way to break a number into primes. Each branch splits a number into smaller factors until only prime numbers remain.

Definitions
Factor tree
A diagram that splits a number into factors until only prime numbers remain.

Example: Factor tree for 36

Prime factorization: 36=22×32

Example: Factor tree for 60

Prime factorization: 60=22×3×5

Common factors, GCF, and GCD

Common factors are factors shared by two or more numbers. The greatest common factor (GCF) is the largest shared factor, which is why it’s so useful for simplifying fractions and reducing ratios. The term greatest common divisor (GCD) means the same thing as GCF - “factor” and “divisor” are two names for a number that divides another number evenly.

Definitions
Common factor
A factor shared by two or more numbers
Greatest common factor (GCF) / Greatest common divisor (GCD)
The largest whole number that divides each of the given numbers evenly

A reliable method for finding the GCF or GCD:

  1. Write prime factorizations of each number.
  2. Identify the primes they have in common.
  3. Use the smallest exponent of each shared prime.
  4. Multiply these together.

Watch out - GCF vs. LCM: Both use prime factorizations, but they work in opposite directions. For the GCF, take only the shared primes and use the smallest exponent of each. For the LCM, take all primes that appear (in either number) and use the largest exponent of each. Mixing these up is one of the most common mistakes on this topic.

Example: GCF of 48 and 180

  • 48=24×3
  • 180=22×32×5
  • Shared lowest powers: 22×3=12

Answer: 12

Multiples and the least common multiple (LCM)

Multiples “expand outward” from a number by repeated multiplication. The LCM is the smallest number that both values divide into evenly.

Definitions
Multiple
A multiple of n is a product n×k where k is a positive integer. The multiples of 5 are 5,10,15,20,…
Common multiple
A number that is a multiple of two or more values
Least common multiple (LCM)
The smallest positive common multiple

Factors and multiples work in opposite directions: the factors of 12 are 1,2,3,4,6,12 - they all divide in evenly and are ≤12. The multiples of 12 are 12,24,36,48,… - they are built by multiplying out and are all ≥12. A factor divides in; a multiple is built out.

Example: LCM of 8 and 18

  • 8=23
  • 18=2×32
  • LCM uses highest powers: 23×32=72

Answer: 72

Even and odd numbers

Even and odd numbers describe parity, which shows up in patterns, divisibility, and algebra.

  • Even: divisible by 2; form 2k
  • Odd: not divisible by 2; form 2k+1

These definitions explain many common patterns. For example, adding two odd numbers always gives an even result, and multiplying an even number by any whole number always gives an even product.

Prime numbers

Prime numbers are the basic “atoms” of number theory. Every whole number greater than 1 is either prime or composite.

Definitions
Prime number
A number greater than 1 with exactly two factors: 1 and itself

Common pitfalls with prime numbers:

  • 1 is not prime. It has only one factor (itself), so it doesn’t meet the definition.
  • 2 is the only even prime. Every other even number is divisible by 2, giving it at least three factors.

Testing for primality

To test whether a number is prime, check divisibility using primes up to n​.

Sidenote
How factor pairs work with square roots

Every factor comes in a pair: if d divides N, then N/d is the partner. One factor in each pair must be less than or equal to N​. Once you pass N​, all larger factors already appeared as the “other half” of a smaller factor.

So checking primes up to n​ is enough to confirm whether a number is prime.

Example: Is 37 prime?

  • 37​≈6.08, so we only need to test primes up to 6: that’s 2, 3, and 5.
  • 37 is odd, so it’s not divisible by 2.
  • Digit sum: 3+7=10, which is not divisible by 3.
  • 37 doesn’t end in 0 or 5, so it’s not divisible by 5.
  • No prime up to 37​ divides 37.

Answer: 37 is prime

Key points
  • Factors divide numbers evenly, and prime factorization reveals the building blocks of whole numbers.
  • The greatest common factor (GCF) or greatest common divisor (GCD) is the largest shared divisor and is essential for simplifying fractions and ratios.
  • The least common multiple (LCM) identifies the smallest shared multiple and is important for matching denominators.
  • Parity (even or odd) and prime structure help predict how numbers behave.
  • Sequences describe numerical patterns: arithmetic uses repeated addition, geometric uses repeated multiplication, and recursive formulas show how each term follows from the previous one.