NUMBER BASES
Understanding place value in any base b, converting numbers between bases, and solving equations where the base itself is unknown.
Overview
Our everyday number system is base 10: the digit in each position represents a power of ten. A number like means . Any integer can serve as a base just as well. In base , the available digits are , and the place values are powers of .
We write to mean . The leading digit must satisfy (no leading zeros). A key constraint: every digit must be strictly less than the base. If you see a "digit" equal to or larger than , something has gone wrong.
AMC 10 problems love number bases for two reasons. First, they test whether you truly understand place value — a concept that looks obvious in base 10 but requires conscious thought in base 5 or base 7. Second, "unknown base" equations (e.g., ) create neat one-variable algebra problems. Recognizing this algebraic framing is often the entire key.
Key facts
- Place-value expansion: . Always expand from right to left, starting at .
- Digit constraint: In base , every digit satisfies . This constraint rules out many candidate bases in unknown-base problems.
- Converting to base 10: Expand using the formula above and evaluate arithmetically.
- Converting from base 10 to base : Repeatedly divide by and record remainders from last to first. ( gives the last digit ; apply to next.)
- Powers of the base: , , , ; , , ; , , ; , , ; , , . Memorize these to speed up conversions.
- Base- arithmetic: Add, subtract, and multiply digit by digit exactly as in base 10, but carry when a column sum reaches (not 10). A column sum of contributes and carries .
- Related bases: Since , every two consecutive base-3 digits correspond to one base-9 digit. Similarly links base 2 and base 8 (groups of 3 binary digits = one octal digit). This shortcut avoids full base-10 round trips.
- Unknown-base equations: If a problem states (with literal digits), substitute and solve: becomes a linear or quadratic in . Then verify the digit constraint.
Worked example 1
Convert to base 10.
Expand by place value:
Quick check: all digits (2, 1, 3, 4) are less than 5. ✓
Worked example 2
In base , the equation holds. Find .
Expand each number:
Set up the equation:
Digit check: digits used are 1, 2, 3, 4, 5. But in base 5 the digit 5 is not allowed (digits go 0–4). So there is no valid base — the equation is inconsistent.
This illustrates the trap: always verify the digit constraint after solving for . If any digit appears, discard that solution.
Corrected version: .
Since , we get . Digit check: digits 1, 2, 3, 4 all satisfy . ✓ Answer: .
Common traps
- Digit base. If but you write the digit 6 somewhere, the representation is invalid. Check after every computation.
- Forgetting . Students sometimes multiply the rightmost digit by instead of 1. Write out the full power-of- list before expanding.
- Carrying to base 10 by mistake. When doing arithmetic in base , carry when the column total reaches , not 10. Getting a column sum of 7 in base 6 means writing 1 and carrying 1.
- Off-by-one in the power list. An -digit base- number uses powers through , not through .
- Missing the related-base shortcut. When converting between bases that are powers of each other (e.g., base 3 ↔ base 9, base 2 ↔ base 8), grouping digits is much faster than going through base 10.