Can Base 10 Logs be Evaluated Without a Calculator?

  • Thread starter Flexington
  • Start date
  • Tags
    Base
In summary: If you take 2^1000, you lose three digits of precision. If you take 2^10000, you lose four digits of precision. So if you need the log of a number that is close to a power of two, you can lose digits of precision.3.In summary, the conversation discussed different methods of evaluating large logs without the use of a calculator. Some methods included using properties of logs and approximations with the help of log tables or calculus. It was also mentioned that memorizing the log of small primes can be helpful in increasing accuracy.
  • #1
Flexington
19
0
Im looking for a method of evaluating large logs without the use of a calculator, such as,
log102750.

Using properties of logs i can reduce the problem to 750*10y=2.
However this requires an estimate on the value y which is going to incure a significant error in my final result.
Im guessing I am overlooking something?
 
Physics news on Phys.org
  • #2
Hi Flexington! :smile:

log10x = lnx/ln10

log2x = lnx/ln2 :wink:
 
  • #3
Flexington said:
Im looking for a method of evaluating large logs without the use of a calculator, such as,
log102750.

Using properties of logs i can reduce the problem to 750*10y=2.
However this requires an estimate on the value y which is going to incure a significant error in my final result.
Im guessing I am overlooking something?
log10(2750)= 750 log10(2)
 
  • #4
Also,

[tex]2^{10}\sim 10^3[/tex],

Thus

[tex]\log_{10}(2^{750}) \sim \log_{10}(10^{225})=225[/tex]

I'm curious how good this approximation actually is...
 
  • #5
micromass said:
Also,

[tex]2^{10}\sim 10^3[/tex],

Thus

[tex]\log_{10}(2^{750}) \sim \log_{10}(10^{225})=225[/tex]

I'm curious how good this approximation actually is...

Very close! Maple gives 225.77
 
  • #6
Flexington said:
Im looking for a method of evaluating large logs without the use of a calculator, such as,
log102750.

Using properties of logs i can reduce the problem to 750*10y=2.
However this requires an estimate on the value y which is going to incure a significant error in my final result.
Im guessing I am overlooking something?

We used to use log tables.
 
  • #7
Integral said:
We used to use log tables.

... but now tables are made out synthetic material. Sorry, couldn't resist.
 
  • #8
George Jones said:
Maple gives 225.77

This was silly. From what mircromass wrote,
[tex]\log_{10}(2^{750}) = 225 + 75 \log_{10}(1.024)[/tex]
 
  • #9
spot on micromass. Can your method be generalised?
 
  • #10
Flexington said:
spot on micromass. Can your method be generalised?

I don't know any generalization. The [itex]2^{10}=10^3[/itex]-trick is something I learned from professor Daubechies. I'm guessing you could generalize it with a instead of 2, but then you would need to find suitable n and m such that [itex]a^n=10^m[/itex]...
 
  • #11
If 2^10 really equaled 10^3, then the log102 would equal .3. Being an electrical engineer, I happen to know the log102 would equal .30103...


Other than memorizing more of the log table, you can either derive it from the taylor series log(1+x)=x-x^2/2+x^3/3... or interpolate from a log you do know using calculus. Say you know log(a), then the log(a+x)=log(a)+x/a+...

For example, I know the log(10)=2.3, so therefore log(11)=2.3+1/10=2.4. Close enough for engineering anyways.
 
  • #12
in shakespeare's time, one could get one's servants to do it!

from http://www.enotes.com/romeo-and-juliet-text/act-iv-scene-iv" …

SECOND SERVANT:
I have a head, sir, that will find out logs :wink:
 
Last edited by a moderator:
  • #13
George Jones said:
This was silly. From what mircromass wrote,
[tex]\log_{10}(2^{750}) = 225 + 75 \log_{10}(1.024)[/tex]

When I wrote the above, I had in mind calculating by hand the first couple of terms from
robert2734 said:
you can either derive it from the taylor series log(1+x)=x-x^2/2+x^3/3

but then I realized that
robert2734 said:
I know the log(10)=2.3

is also needed. Given this,
[tex]\log_{10}(2^{750}) \doteq 225 + \frac{75}{2.3} \left(0.024 - \frac{0.024^2}{2}\right),[/tex]
which is tedious, but not difficult, to calculate by hand, and which gives a very accurate result.
 
  • #14
Thank god for texas instruments.
 
  • #15
The natural log of the first twenty numbers have pretty good one digit approximations.

ln2=.7 ln3=1.1 ln4=1.4 ln5=1.6 ln6=1.8 ln7=1.95 ln8=2.1 ln9=2.2 ln10=2.3 ln11=2.4 ln12=2.5 ln13=2.6 ln14=2.65 ln15=2.7 ln16=2.8 ln17=2.85 ln18=2.9 ln19=2.95 ln20=3.0 ln(21)=3.05

If you need more accuracy, you can just use calculus.
 
Last edited:
  • #16
And, of course, you can always do a binary search for more precision on one of them:

If exp(2.95) > 19 but exp(2.94) < 19, then ln(19) must be in between... oh, let's try some number in the middle...
 
  • #17
Say I'm sitting in an art movie and need to know 7^18. 7^18=e^35.1=(20^11)*8=2^14*10^11=16*10^14. My calculator says 1.628e15. If you need more accuracy than this get a calculator.

What's the smallest number where my method loses monotonicity? That is you'll get a smaller log from a bigger number than from some smaller number? I have ln(3125)=ln(5^5)=5*1.6=8.0. ln(3072)=ln(3*2^10)=1.1+10*.7=8.1.

The ln(5) is really 1.61 so the ln(3125) is really 8.05. The ln(2) is really .693 so ln(3072) is really 8.03.
 
Last edited:
  • #18
robert2734 said:
Say I'm sitting in an art movie and need to know 7^18.
This was hilarious. (The movie must have been Aronofsky's "Pi".)

I did a silly suggestion, anyway, because for an iterative approach you'd need a calculator anyway.

I'm wondering if there is such thing as monotonicity here; results are up or down the real value mostly depending on which direction the initial 1-digit approximation was rounded.
 
  • #19
I'm wondering if there is such thing as monotonicity here; results are up or down the real value mostly depending on which direction the initial 1-digit approximation was rounded. /QUOTE said:
ln(48)=4*0.7+1.1=3.9 ln(49)=2*1.95=3.9 ln(50)=2.3+1.6=3.9.

It isn't too hard to realize that in real life ln(50)>ln(49)>ln(48). But rounded to one digit there's no incongruety. Only slightly harder to realize that they must be 1/50 or .02 apart. Anyways what I meant was where do you see an obvious error because the log of a smaller number is larger than the log of a bigger number.

It's probably worth memorizing the log of small primes to better than one digit accuracy. Because when you take 2^10, you lose a digit of precision. If you take 2^100, you lose two digits of precision.
 

1. Can base 10 logs be evaluated without a calculator?

Yes, base 10 logs can be evaluated without a calculator using logarithm rules and simplification techniques. However, it may be more time-consuming and prone to errors compared to using a calculator.

2. What is the formula for evaluating a base 10 log without a calculator?

The formula for evaluating a base 10 log without a calculator is log10(x) = y, where x is the number and y is the power of 10 that gives the number x.

3. How do I simplify a base 10 log before evaluating without a calculator?

To simplify a base 10 log, you can use logarithm rules such as the power rule, product rule, and quotient rule. You can also use properties of exponents to simplify the expression before evaluating it without a calculator.

4. Can I use natural logarithms to evaluate a base 10 log without a calculator?

Yes, you can use natural logarithms (ln) to evaluate a base 10 log without a calculator by converting the base 10 log to a natural logarithm using the change of base formula. However, it may be more complex and time-consuming compared to using logarithm rules for base 10 logs.

5. What are some tips for evaluating base 10 logs without a calculator?

Some tips for evaluating base 10 logs without a calculator include practicing logarithm rules, simplifying expressions before evaluating, and being familiar with properties of exponents. It is also helpful to know common logarithm values, such as log10(2) = 0.30103 and log10(3) = 0.47712, to make calculations easier.

Similar threads

  • Linear and Abstract Algebra
Replies
1
Views
639
  • Precalculus Mathematics Homework Help
Replies
8
Views
771
  • Chemistry
Replies
1
Views
875
  • Set Theory, Logic, Probability, Statistics
Replies
4
Views
1K
Replies
1
Views
1K
Replies
4
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
7
Views
471
  • Computing and Technology
Replies
4
Views
769
  • New Member Introductions
Replies
1
Views
74
  • Classical Physics
Replies
18
Views
1K
Back
Top