In the previous article, trigonometry gave astronomers a way to calculate with angles.
But that created another problem.
The mathematics could work, yet the arithmetic could still be painfully slow.
An astronomical calculation might contain many multiplications, divisions, powers, and trigonometric values. Before electronic calculators, every one of those operations had to be carried out by hand or with numerical tables.
So the next question was practical:
Can we keep the mathematics — but make the arithmetic easier?
Logarithms gave a remarkable answer.
Quick Answer
Logarithms let people replace difficult operations with easier ones.
In modern notation:
log(ab) = log(a) + log(b)
and
log(a/b) = log(a) − log(b)
That meant a long multiplication could be turned into table lookups plus addition. A division could become subtraction.
For astronomers, navigators, surveyors, and engineers who worked with many numerical calculations, that could save enormous effort.
Logarithms did not change the astronomical model. They changed the cost of calculating with it.
The New Bottleneck Was Arithmetic
By the time trigonometric methods had become powerful, astronomers could describe many angular relationships numerically.
But a useful formula is not automatically a convenient calculation.
Imagine a prediction that requires several trigonometric values, several products, and several divisions. Each individual step is manageable. Repeating the process for many stars, many dates, or many planetary positions is another matter.
This is an important computational lesson:
a method can be mathematically correct and still be too expensive to use repeatedly
That problem still appears in modern numerical simulation. We often know the equation before we know how to solve it efficiently.
Figure 1. Logarithms change a difficult operation into an easier one, while preserving the final mathematical result.
A Modern Mental Model: Turn Products into Sums
Today we often introduce logarithms as the inverse of exponentiation.
For example:
10² × 10³ = 10⁵
The exponents add:
2 + 3 = 5
A logarithm generalizes this useful pattern. It assigns numbers a new scale on which multiplication can be handled by addition.
This is a good mental model for understanding why logarithms are computationally useful.
But there is an important historical caution.
John Napier did not define logarithms in the modern textbook way as “the exponent of a base.” His original construction used a different mathematical framework. Our modern notation is a later and cleaner way to understand the computational relationship.
Napier Wanted to Shorten Long Calculations
John Napier published Mirifici Logarithmorum Canonis Descriptio in 1614.
His tables were closely connected with trigonometric calculation. Historical accounts describe the work of building the canon as an enormous numerical task that occupied him for many years.[1]
The motivation was practical.
The Royal Society summarizes Napier's goal as turning more difficult operations such as multiplication and division into simpler addition and subtraction, with applications that included navigation as well as mathematics itself.[2]
Think about the change in workflow.
Without a logarithm table:
multiply → multiply → divide → multiply → check every digit
With a logarithm table:
look up → add/subtract → look up result
The answer still required care. Tables could contain errors, interpolation could be imperfect, and users still had to work correctly.
But the structure of the calculation had changed.
A Table Was a Form of Stored Computation
A logarithm table contains work that has already been done.
Someone first calculates many accurate values. Those values are printed. Later users do not need to rebuild every result from the beginning.
They retrieve the value and reuse it.
compute once → store → retrieve → reuse
This is why numerical tables were so important before electronic computing.
They were not merely reference books. They were pieces of computation stored on paper.
Figure 2. A numerical table lets one person's difficult calculation become many people's quick lookup.
Briggs Made the New Tool Easier to Use
Napier's first logarithms were not the common base-10 logarithms that later became familiar in schools and engineering.
Henry Briggs quickly saw the importance of the new idea.
He visited Napier, discussed changes to the system, and in 1617 published the first thousand common logarithms. His larger Arithmetica Logarithmica followed in 1624.[3]
Base 10 was especially convenient in a decimal number system.
The mathematical idea was becoming easier to use as a practical calculating technology.
Napier Was Not the Only Inventor
The history needs one more correction.
Jost Bürgi developed a different logarithmic system independently. His tables were published in 1620, although historical evidence indicates that his work had begun earlier.[1]
So it is safer to say:
Napier won priority in publication, while Napier and Bürgi deserve credit as independent inventors of logarithmic methods.
This is another recurring pattern in the history of mathematics.
When many people face the same difficult problem, similar ideas can emerge in more than one place.
Kepler Immediately Saw What Astronomers Could Do with Logarithms
Johannes Kepler encountered Napier's logarithms soon after their publication and became enthusiastic about their potential for astronomy.
He later produced his own logarithmic table in 1624.[4]
The connection became especially clear in the Rudolphine Tables, published in 1627.
Those tables were built from the extraordinarily precise observations associated with Tycho Brahe and from Kepler's planetary theory. Cambridge's history of the tables notes that Kepler used logarithmic tabulations to facilitate the calculations of planetary positions.[5]
This is a powerful moment in our story:
better observations + better models + faster calculation → better prediction
Figure 3. Logarithms moved quickly from a new mathematical idea into the working tools of seventeenth-century astronomy.
Try It — Make Multiplication Become Addition
Start with powers of ten.
What is 100 × 1000?
Now write the same numbers as powers of ten:
100 = 10² and 1000 = 10³
Instead of multiplying the full numbers, add the exponents.
You get:
10² × 10³ = 10²⁺³ = 10⁵ = 100,000
This is not Napier's original definition.
It is a modern way to see the deep computational idea:
multiplication on one scale can become addition on another
Try It in Python
The calculator now does the lookup instantly, but we can still test the relationship.
import math
a = 100
b = 1000
left = math.log10(a * b)
right = math.log10(a) + math.log10(b)
print(left)
print(right)
Both values are 5.0.
The computer no longer needs a printed logarithm table, but the mathematical relationship is the same.
Why This Matters for Computational Mathematics
Logarithms teach a broader lesson than one useful formula.
Sometimes we solve a difficult calculation by changing its representation.
Instead of attacking multiplication directly, logarithms transform the problem into addition.
Modern computational mathematics does this constantly.
We change coordinates. We transform equations. We move into frequency space. We factor matrices. We store expensive calculations so they can be reused.
The pattern is familiar:
hard problem → better representation → easier computation
That idea will return many times as Lumentora moves toward numerical methods, linear algebra, simulation, and AI.
One Sentence to Keep
Logarithms made the sky easier to calculate by changing repeated multiplication and division into simpler arithmetic that could be accelerated with precomputed tables.
What Should We Ask Next?
Faster calculation helps only if the observations are good enough.
So our next question turns from calculation back to measurement.
Just before logarithms appeared, one astronomer had spent decades collecting some of the most precise naked-eye observations ever made.
Next question: How Did Tycho Brahe Turn the Sky into Data?
Previous: Why Did Astronomy Need Trigonometry?
Navigation callback: How Did Sailors Find Their Position Before GPS?
Earlier foundation: How Did Ancient Astronomers Turn the Sky into Angles?
Sources & Further Reading
- MacTutor / Dictionary of Scientific Biography, “Napier” — Napier's 1614 publication, long computation of the canon, Briggs, Bürgi, and Kepler's reception of logarithms.
- Royal Society, “Counting bones” — Napier's effort to replace difficult arithmetic with simpler operations and the practical importance of logarithms.
- MacTutor History of Mathematics, “Henry Briggs” — the 1617 and 1624 common-logarithm tables.
- MacTutor / Dictionary of Scientific Biography, “Kepler” — Kepler's reception and later construction of logarithmic tables.
- University of Cambridge, “Kepler and Astronomical Tables” — logarithmic tabulations in the Rudolphine Tables and the calculation of planetary positions.
Historical note: modern equations such as log(ab) = log(a) + log(b) are used here as a teaching model. Napier's original logarithms were not defined exactly like modern base-10 or natural logarithms.