The largest product
Suppose you are given the digits , each to be used exactly once, and asked to fill them into to get the largest possible product. There are only a few arrangements, but the largest isn't immediately obvious. The pattern that emerges has a beautiful algebraic explanation , and it generalises to bigger problems too.
Concept
The problem. Place each of the given digits exactly once into the boxes of a fixed pattern (like or ) so as to make the largest possible product.
Why the answer isn't obvious. Each digit's value depends on its position: in a tens place it counts ten times more than in a units place. So you want big digits in high-value positions , but exactly which positions are highest-value depends on the arrangement.
Small case: with digits .
There are arrangements. Let's try the ones with the largest product candidates:
| Arrangement | Product |
|---|---|
The largest is . The biggest digit () goes alone, and the next two () sit in the two-digit factor , with the larger one in the tens place.
Why? With digits and , the candidate equals . Swapping the role to would give . The difference is . Since , this is positive , meaning the first form is larger. So putting the largest digit alone wins.
Bigger case: . Among orderings of , the maximum is
with the two largest digits in the tens places and the two smaller digits in the units places. Formal proof uses repeated swap arguments like above.
A general principle. When forming products by placing digits, rank positions by their place-value weight, and pair the largest digits to the largest weights. Often the placement also distributes large digits across the factors so that both factors grow together , products grow fastest when factors are close in size.
Connection to area. Visualise each two-digit number as the side of a rectangle and the product as its area. For a fixed perimeter (sum of digits), the area is maximised when the rectangle is closest to a square , which is exactly the pattern of distributing big digits across both factors.
Worked examples
Example 1. Largest product of using .
- Apply the rule: largest digit alone. Answer: .
Example 2. Largest product of using .
- Largest is , alone. Other two: . Product: .
- (Check: , , . So wins.)
Example 3. Largest product of using .
- Pair big with small across factors. Try and and . Largest is .
Example 4. Smallest product (for contrast) of using .
- Mirror the rule: smallest digit alone. Smallest is . Other two: . But vs , the smallest two-digit factor is . So smallest product is , not .
- The pattern "use the smallest digit alone with the smallest two-digit number" , equivalent to pushing small digits to high-value spots , gives the smallest product.
Try it yourself
- Largest using .
- Largest using (no leading ).
- Largest using .
- Smallest using .
- With , by how much is the largest product bigger than the smallest?
- Argue (in words or with algebra) why the largest digit always goes in the highest place-value position.
- Largest using .
- Two students are given the same three digits and asked to find the largest product. One gets and the other . Who is correct? Why?
Activity
Digit duel. Roll three dice. The three numbers shown are your digits. With paper and pen, write down all possible arrangements of and find the maximum product. Repeat the experiment times. Does the "largest digit alone, larger of the rest in tens place" rule always win? Record any roll where the rule seems to fail , and check your arithmetic.