Logarithms
Author(s)
David M. Lane
Prerequisites
Distributions
Learning Objectives
- Compute logs using different bases
- Perform basic arithmetic operations using logs
- State the relationship between logs and proportional change
The log transformation reduces positive skew. This can be valuable both for making the data more interpretable and for helping to meet the assumptions of inferential statistics.
Basics of Logarithms (Logs)
Logs are, in a sense, the opposite of exponents. Consider the following simple expression:
102 = 100
Here we can say the base of 10 is raised to the second power. Here is an example of a log:
Log10(100) = 2
This can be read as: The log base ten of 100 equals 2. The result is the power that the base of 10 has to be raised to in order to equal the value (100). Similarly,
Log10(1000) = 3
since 10 has to be raised to the third power in order to equal 1,000.
These examples all used base 10, but any base could have been used. There is a base which results in "natural logarithms" and that is called e and equals approximately 2.718. It is beyond the scope of this book to explain what is "natural" about it. Natural logarithms can be indicated either as: Ln(x) or loge(x).
Changing the base of the log changes the result by a multiplicative constant. To convert from Log10 to natural logs, you multiply by 2.303. Analogously, to convert in the other direction, you divide by 2.303.
Taking the antilog of a number undoes the operation of taking the log. Therefore, since Log10(1000) = 3, the antilog10 of 3 is 103 = 1,000. Taking the antilog of a number simply raises the base of the logarithm in question to that number.
Logs and Proportional Change
A series of numbers that increase proportionally will increase in equal amounts when converted to logs. For example, the numbers in the first column of Table 1 increase by a factor of 1.5 so that each row is 1.5 times as high as the preceding row. The Log10 transformed numbers increase in equal steps of 0.176.
Table 1. Proportional raw changes are equal in log units.
Raw |
Log |
4.0
6.0
9.0
13.5 |
0.602
0.778
0.954
1.130 |
As another example, if one student increased their score from 100 to 200 while a second student increased theirs from 150 to 300, the percentage change (100%) is the same for both students. The log difference is also the same, as shown below.
Log10(100) = 2.000
Log10(200) = 2.301
Difference: 0.301
Log10(150) = 2.176
Log10(300) = 2.477
Difference: 0.301
Arithmetic Operations
Rules for logs of products and quotients are shown below.
Log(AB) = Log(A) + Log(B)
Log(A/B) = Log(A) - Log(B)
For example, Log10(10 x 100) = Log10(10) + Log10(100) = 1 + 2 = 3.
Similarly,
Log10(100/10) = Log10(100) - Log10(10) = 2 - 1 = 1.
Please answer the questions:
|