Welcome back to Scientific Notation in Real Life! This is Lesson 5 of 6, which means we are nearly at the finish line. Over the previous four lessons, we built a strong set of skills: reading scientific notation, writing both large and small numbers, and comparing values by examining exponents and coefficients. All of that work focused on understanding and organizing numbers.
Now we move to computing with them. In this lesson, we will learn how to multiply two numbers in scientific notation. This is one of the most practical operations in science and everyday estimation, and the method is refreshingly simple: multiply the coefficients, add the exponents, and adjust if needed. Let's get started.
Why Multiply in Scientific Notation?
Many real-world questions boil down to multiplying two large (or small) quantities. For instance, if a city of 350,000 people each uses about 200 liters of water per day, how much water does the entire city need? We could multiply 350,000×200 and count zeros carefully, but that is slow and error-prone.
In scientific notation, those numbers become 3.5×105 and . As we will see shortly, multiplying them takes just a few small steps with no long strings of zeros in sight. Scientific notation keeps the arithmetic compact and the results easy to read.
The Core Rule
You may recall from the earlier course on exponent rules that multiplying two powers of the same base means we add the exponents:
10a×10b=10a+b
A Straightforward Example
Let's walk through a multiplication where everything lands neatly in proper form:
(3×104)×(2×103)
Multiply the coefficients:
When the Coefficient Needs Adjusting
Sometimes the product of the two coefficients lands at 10 or above. Recall that proper scientific notation requires the coefficient to be at least 1 and less than 10. When the product breaks that rule, we need one extra step.
Consider:
(5×103)×(4×10
The Full Procedure at a Glance
Here is the complete method gathered into four tidy steps:
Multiply the coefficients (c1×c2).
Add the exponents (n).
A Real-World Example: City Water Use
Let's put the method to work on a practical problem. Suppose a city has a population of 3.5×105 people, and each person uses an average of 2.0×102 liters of water per day. What is the city's total daily water consumption?
Common Pitfalls
A few common mistakes are worth keeping in mind as you start practicing:
Adding the exponents is correct; multiplying them is not. The product rule says 10a×10b=10a+. It is easy to slip into by habit — always .
Conclusion and Next Steps
In this lesson, we learned how to multiply two numbers in scientific notation: multiply the coefficients, add the exponents, and adjust the result into proper form when the new coefficient reaches 10 or above. We also applied the method to estimate a city's daily water consumption, seeing firsthand how scientific notation keeps large-number arithmetic quick and clean.
Up next, you will practice this skill through a series of hands-on exercises — from guided step-by-step problems to real-world scenarios involving city water supplies and the speed of light. Work through them confidently, and this multiplication technique will soon feel like second nature!
Be a part of our community of 1M+ users who develop and demonstrate their skills on CodeSignal
2.0×
102
Every number in scientific notation has the form c×10n. When we multiply two such numbers, we can group the coefficients together and the powers of ten together:
(c1×10n1)×(c2×10n2)=(c1×c2)×10n1+n2
So the procedure is: multiply the coefficients and add the exponents. That is the heart of the method.
Step
Expression
Input
( c₁ × 10ⁿ¹ ) × ( c₂ × 10ⁿ² )
→ Multiply coefficients
c₁ × c₂
→ Add exponents
n₁ + n₂
Final result
( c₁ × c₂ ) × 10⁽ⁿ¹ ⁺ ⁿ²⁾
3×2=6
Add the exponents:4+3=7
Combine:6×107
Since 6 is between 1 and 10, the result is already in proper scientific notation. Done!
Here is one more:
(4×102)×(2×105)
Coefficients: 4×2=8. Exponents: 2+5=7. Result: 8×107. The coefficient 8 sits comfortably between 1 and 10, so no extra work is needed.
2
)
Multiply the coefficients:5×4=20
Add the exponents:3+2=5
Combine:20×105
The coefficient 20 is too large, so this is not proper form yet. To fix it, we move the decimal point one place to the left, turning 20 into 2.0, and add 1 to the exponent to compensate:
20×105=2.0×106
Why does this work? Because 20=2.0×101, and 101×105=106. We are simply rewriting the same value in proper form.
Let's try another example with decimal coefficients:
(3.5×104)×(6.0×102)
Coefficients: 3.5×6.0=21.0. Exponents: 4+2=6. Intermediate result: 21.0×106. Since 21.0≥10, we shift the decimal one place left and increase the exponent by 1:
21.0×106=2.1×107
Stage
Before adjustment
20. × 10⁵
↓
Shift decimal left, add 1 to exponent
After adjustment
2.0 × 10⁶
1
+
n2
Combine the results: (product)×10(sum).
If the product is 10 or greater, move the decimal one place left and add 1 to the exponent.
A quick note on Step 4: since both original coefficients fall between 1 and 10, their product can never reach 100. This means we will never need to shift the decimal more than one place. The adjustment step is always a small fix, not a large overhaul.
The table below shows three multiplications side by side so we can compare the "no adjustment" and "adjustment" cases:
Problem
Coefficient Product
Exponent Sum
Needs Adjustment?
Final Answer
(3×104)×(2×103)
6
7
No
6×107
(4×102)×(2×105)
(5×103)×(4×102)
(3.5×105)×(2.0×102)
Coefficients:3.5×2.0=7.0
Exponents:5+2=7
Result:7.0×107 liters
Since 7.0 is between 1 and 10, no adjustment is needed. The city uses about 70 million liters of water per day. Notice how scientific notation kept the calculation to small, manageable numbers while still handling quantities in the tens of millions.
b
a×b
add
Forgetting to adjust the coefficient. If the product of the coefficients is 10 or more, the answer is not yet in proper scientific notation. The same is true if it falls below 1 — always verify the coefficient lands in the range [1,10) before finishing.
Rushing through decimal arithmetic. A small error in a coefficient multiplication like 3.5×6.0 can throw off the entire answer. Take a moment to double-check before moving on.