Results 1 to 8 of 8

Thread: Logarithm help

Hybrid View

  1. #1
    Fanatic Member twanvl's Avatar
    Join Date
    Dec 2001
    Posts
    771

    Re: Logarithm help

    NOTE elog(81) is actually 4.3944... Your calculator's log function returns 10log(81)
    A logarithm without base can mean many different things, to mathematicians the base is e, to computer scienctists the base is 2, to economists the base is 10...

    To a mathetaician 10log(81)=1.908... is not obtained somehow, it is just the eternal truth.
    To a computer or a person who wants to see the actual number it is more difficult. There is no easy way to find a logarithm. There are algorithms that can calculate them, but that is not something you want to do yourself. A simple algorithm you could use yourself is simply trying:
    Code:
       10log(81) = x
       10^x = 81
    try 1:
       10^1 = 10  (too small)
    try 2:
       10^2 = 100 (too large)
    try 1.5:
       10^1.5 = 31.. (too small)
    try 1.75:
       10^1.75 = 56.2... (too small)
    etc.
    So basicly log(81)=1.908... because your calculator says so and because 10log(81)=81

    Your calculator probably does not have a logarithm key for any base, in that case you can use the formula:
    blog(x) = log(x)/log(b)
    This works regardless of the base of the logarithm used.

  2. #2

    Thread Starter
    Dazed Member
    Join Date
    Oct 1999
    Location
    Ridgefield Park, NJ
    Posts
    3,418

    Re: Logarithm help

    Posted by twanvl

    So basicly log(81)=1.908... because your calculator says so and because 10log(81)=81
    Is that correct? 10log(81)=81 -->
    81 != 1081.

  3. #3

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width