Place Value & Reading Large Numbers
In our number system, the place of a digit tells you its value. Moving left, each place is worth ten times more than the one to its right. Reading right to left the places are: ones, tens, hundreds, then thousands, ten-thousands, hundred-thousands, then millions, ten-millions, hundred-millions.
We group digits into periods of three (ones, thousands, millions) separated by commas. Read each period, then say its group name.
Read .
- Millions period: “six million”
- Thousands period: “three hundred eight thousand”
- Ones period: “seventy-one”
Answer: six million, three hundred eight thousand, seventy-one. Notice the in the ten-thousands place is a placeholder: it holds the spot so the other digits keep their value.
In , what is the value of the digit ? The sits in the hundred-thousands place, so its value is .
Tip: Expanded form shows each digit's value added together. For : . The zero shows there are no tens.
Rounding & Estimation
To round to a place value: look at the digit just to the right of that place.
- If it is or more, round up (add one to the rounding digit).
- If it is or less, round down (keep the rounding digit).
Then replace every digit to the right with zeros. Estimation means rounding first, then computing, to get a quick, close answer.
Round to the nearest thousand. The thousands digit is . The digit to its right is (which is or less), so round down and keep the . Zero out the rest: .
Estimate . Round each to the nearest hundred: and . Estimate: . (The exact answer is , so our estimate is very close.)
Tip: A digit of exactly always rounds up. And rounding never changes digits to the left of your rounding place unless a carry ripples through, e.g. rounding to the nearest hundred gives .
Adding & Subtracting Whole Numbers
Line up numbers by place value (ones under ones). Add from right to left; when a column totals or more, carry the extra ten to the next column. Subtract from right to left; when the top digit is too small, borrow (regroup) one unit from the next place to the left.
. Ones: , write carry . Tens: , write carry . Hundreds: . Answer: .
. Ones: can't be done, borrow: . Tens: after borrowing the became (we borrowed across the zero), . Hundreds: . Answer: . Check: .
Tip: Addition and subtraction undo each other. Always check a subtraction by adding your answer back to the number you subtracted.
Multiplying Whole Numbers
To multiply multi-digit numbers, multiply by each digit of the bottom number one at a time, shifting each partial product one place left (because each new digit is worth ten times more). Then add the partial products.
.
- (shifted one place left)
- Add:
. Multiply the non-zero parts: . Then attach the total number of trailing zeros ( zeros plus the zero already in ): .
Tip: Multiplication is repeated addition, and order does not matter: . To multiply by , , or , just attach that many zeros.
Dividing Whole Numbers (Long Division)
Division splits a total into equal groups. In , is the dividend, is the divisor, and the result is the quotient. Long division repeats four steps: Divide, Multiply, Subtract, Bring down. Whatever is left at the end that will not divide evenly is the remainder.
.
- remainder ; write , subtract , bring down to make .
- remainder ; write , subtract , bring down to make .
- remainder ; write .
Answer: . Check: , and .
. R ; bring down to make ; . Answer: , no remainder.
Tip: Check any division with: . The remainder must always be smaller than the divisor.
Order of Operations (PEMDAS)
When an expression has several operations, do them in this order:
- Parentheses (grouping symbols) first.
- Exponents next.
- Multiplication and Division, left to right.
- Addition and Subtraction, left to right.
Multiplication and division rank equally, so you handle them in reading order. The same is true of addition and subtraction.
Evaluate .
- Parentheses: , giving .
- Exponent: , giving .
- Multiply: , giving .
- Add: .
Evaluate . Division and multiplication tie, so go left to right: , then . (Doing the multiply first would wrongly give .)
Tip: PEMDAS does not mean “all multiplication before all division.” M and D share a rank; A and S share a rank. Ties are always broken left to right.
Exponents & Perfect Squares
An exponent tells how many times to use the base as a factor. In , is the base and is the exponent: . We read as “five squared” and as “five cubed.” A perfect square is a whole number times itself, like
. . .
The first several perfect squares: , , , , , , , , , . Memorizing these speeds up a lot of later math.
Tip: An exponent is not multiplication of the base by the exponent. , not . And any base to the first power is itself: .
Word Problems: Putting It Together
To solve a word problem: (1) read carefully and find what is asked, (2) decide which operation(s) fit --- combining suggests addition, taking away suggests subtraction, equal groups suggest multiplication, and splitting into equal parts suggests division, (3) compute in the right order, and (4) check that your answer makes sense.
A school orders boxes of markers with markers each, then hands out markers. How many are left?
- Total ordered: markers.
- After handing out : markers left.
Tip: Underline the numbers and the question. A quick estimate first tells you whether your final answer is reasonable.
Going Deeper: Advanced Whole-Number Ideas
Every long-division problem is really a statement about whole numbers. For any dividend and any divisor , there is exactly one pair of whole numbers --- a quotient and a remainder --- such that
This is called the Division Algorithm. The condition is what forces a single correct answer: the remainder is never negative and never as large as the divisor. This one equation is the foundation for fractions, modular arithmetic, and much of the number theory you will meet later.
Often we care only about the remainder of a division, not the quotient. We write
meaning is the remainder when is divided by . A clock is the everyday example: it works “.” If it is o'clock and hours pass, we do not say o'clock --- we compute , so it is o'clock. Numbers that share the same remainder are called congruent; for example and are congruent mod because both leave remainder .
A -hour trip starts at o'clock. On a -hour clock, what time does it end?
- Add the hours: .
- Reduce mod : remainder , so .
The trip ends at o'clock. This makes sense: hours is exactly two full loops of the clock, so the hand returns to where it started.
The quick tests for divisibility are not magic --- each one comes from place value.
- By , , or : only the ones digit matters, because , , are all divisible by , , and . So the whole number is divisible exactly when its last digit is.
- By or : add the digits. Since , , and so on, each place is a multiple of plus . Subtracting off the multiples of leaves just the sum of the digits, so the number is divisible by (or ) exactly when that digit sum is.
- By : check the last two digits, because is divisible by , so everything above the hundreds place already is.
Is divisible by ? Add the digits: . Add again: . Since is not divisible by , neither is the original number. (Its remainder mod is even predictable: it is .)
Our usual system is base ten: each place is a power of (). Computers use base two (binary), where each place is a power of () and the only digits are and . To convert a whole number to binary, repeatedly divide by and record the remainders from bottom to top.
Convert to base two by dividing by over and over:
- remainder
- remainder
- remainder
- remainder
Read the remainders bottom-up: . Check by expanding the places: . ✓
The triangular numbers count dots stacked in a growing triangle: , where the th one is the sum . Instead of adding term by term, there is a beautiful shortcut:
Why it works (Gauss's trick): write the sum forwards and backwards and add the two lines in columns:
Every column adds to , and there are columns, giving for twice the sum --- so the sum itself is .
Legend says the young Gauss found in seconds. Use the formula with :
No need to add one hundred numbers by hand.
A few reliable shortcuts:
- Multiply by : multiply by and halve. So .
- Square a number ending in : for a two-digit number , compute and attach “.” So : , giving .
- Front-end estimation: add just the leading digits for a fast lower estimate, then refine. For : , plus the tens gives about .
Where this leads: The Division Algorithm grows into fractions and the study of prime numbers; modular arithmetic underlies calendars, music, and the encryption that protects online banking; number bases run every computer; and the sum is your first taste of the series you will meet in algebra and calculus. Advanced math is mostly these whole-number ideas, pushed further.
Formulas, Proofs & Tips
What it means. A fixed order so every reader of an expression gets the same value.
Example. (multiply before adding), not .
Why it works. Multiplication is repeated addition and exponents are repeated multiplication, so each level is a shorthand for the one below it and must be unpacked first. Parentheses override the order by grouping explicitly.
Tip. Multiply/divide are one level worked left to right, and so are add/subtract. is , not .