Results 1 to 8 of 8

Thread: Logarithm help

  1. #1

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

    Smile Logarithm help

    I know at at one point in time i am going to have to deal with logarithms and i think it's going to be semester after next so i wanted to see if i could get some help with them. Just the basic concepts.

    A logarithm is the exponent of the power to which a base number must be raised to equal a given number.

    x = ay --> Log(a)x = Log(a)ay -->
    Log(a)x = y

    8 = 23 --> Log(2)8 = Log(2)23 -->
    Log(2)8 = 3

    So when it is said the exponent of the power are we talking about the exponent of x = ay?

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

    Re: Logarithm help

    x = ay <-> Log(a)x = y
    is not true (or perhaps this is a notation issue), the rule is:
    x = ay <-> alog(x) = y
    So:
    8 = 23 <-> 2log(8) = 3

    When x = ay there are three things you can caluclate
    given a,y find x: exponentiation
    given x,y find a: root
    given x,a find y: logarithm

  3. #3

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

    Re: Logarithm help

    Yes yes much clearer now. So based on the definition of a logarithm
    would it be correct to say that we are looking for the approximation of the power?

    81 = 92 --> 9log(81) = 2 --> log(81) = 1.908......... -->
    92 = 81

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

    Re: Logarithm help

    Not exactly, 9log(81) means base-9 logarithm of 81, not 9log(81) which means 9 raised to the base-e logarithm of 81.
    When a base is not specified it is usually assumed to be equal to e (2.71828....), so log(81) is acutally elog(81) = 1.908... this number is not related to 9log(81) = 2.
    The subscript notation for the base can be confusing sometimes, some people prefer to use superscript, as in 9log(81) = 2

  5. #5

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

    Re: Logarithm help

    Ok say we have log(81). Since no based is specified we are using the natural log in the form of elog(x) or ln x where e = 2.718......... So we have 2.718log(81) = 1.908..... Now how is 1.908..... obtained?

  6. #6
    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.

  7. #7

    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.

  8. #8

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