Calculate Base 10 Logs Without Calculator

  • Context: Undergrad 
  • Thread starter Thread starter jenzao
  • Start date Start date
  • Tags Tags
    Base Log
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
3 replies · 3K views
jenzao
Messages
48
Reaction score
0
Is there a way to calculate multi digit base 10 logs without a calc or tables?

eg.. what is ? log (base 10) of 1381.42?? (without a calulator)??
 
Mathematics news on Phys.org
(with caveat that i memorized log 1 - 9)
 
Of coursethat is possible, the first people who made tables did not have calculators.
since
log(ab)=log(a)+log(b)
numbers should be decomposed multiplicatively.
One method is to factor into primes
log(1381.42)=-2+log(2)+2log(17)+log(239)
This shows a problem logs of many primes will be needed
another method would involve writing the number as a product of factors with known logs and factors near 1 since when x is small
log(1+x)~log(e)[x-x^2/2+x^3/3-x^4/4+...]
say one knew log(138176)
then
log(1381.42)=-2+log(138176)-log(1+1/4064)