Count numbers built from digit cards
Using each number card exactly once, you want to make four-digit numbers that are greater than . Find how many such numbers can be made in all.
Show solution
Understand
Using the four digit cards 8, 0, 5, and 3 each exactly once, build four-digit numbers and count how many of them are greater than 5000.
- The four digit cards are 8, 0, 5, and 3.
- Each card must be used exactly once to form a four-digit number.
- We only count numbers that are greater than 5000.
- How many four-digit numbers greater than 5000 can be made.
- Every number is four digits, so the thousands place cannot be 0.
- The number must be strictly greater than 5000.
Plan
#2 Make a Systematic List · also uses: #7 Identify Subproblems
Whether a number is greater than 5000 is decided almost entirely by the thousands digit, so I split the count by which card sits in the thousands place (a subproblem), then systematically list the arrangements of the remaining three cards.
Execute
Review
There are 18 four-digit numbers in all using these cards (3 choices for a nonzero leading digit times 6 arrangements). Only those starting with 5 or 8 beat 5000, which is exactly 12 of them, a believable fraction.
You could write out the full systematic list of all four-digit numbers and cross off each one that is 5000 or less, then count what remains.
Standards · min grade 4
4.NBT.A.2Read and write multi-digit whole numbers and compare using symbols — Comparing each four-digit number against 5000 by reading the thousands place first.