Table Of Contents

arrow

LOG In Excel

The LOG function in Excel computes the logarithm of a number to the base that we specify. It is categorized as a Math/Trigonometry function in Excel. Therefore, the LOG function in Excel always returns a numeric value.

In mathematics, the logarithm is the opposite of the exponentiation. It means the logarithmic value of any given number is the exponent to which we must raise the base to produce that number. For example,

25 = 32

For a given number 32, 5 is the exponent to which base 2 has been raised to produce the number 32. So, a LOG of 32 will be 5.

Mathematically, we write it as log­232 =5. A LOG of 32 to the base 2 is 5.

LOG Formula in Excel

LOG Formula

Number: It is a positive real number (should not be a 0) for which we want to calculate the logarithm in Excel.

Base: It is an optional argument, it is the base on which the logarithmic value is calculated, and the LOG function in Excel, by default, takes the base as 10.

How to Use the LOG Function in Excel?

The LOG function in Excel is very simple and easy to use. Let us understand the working of the LOG function in Excel by some LOG formula examples.

Logarithmic function
Logarithmic function 1

The logarithmic function is used for mathematical operations and is widely used in financial statistics. In business analytics, LOG in Excel is often used with other tools for regression analysis and plotting graphs for data representation. For example, logarithmic functions are used for graphical representation when the data rate of change in the data increases or decreases quickly.

The POWER function returns the result of a number raised to a power. So, inversely, the LOG function in Excel returns the power (exponent) to which the base is raised.

LOG in Excel Example #1

For example, 45 = 1024, using the POWER function, we would write it as POWER(4,5) = 1024. If we nest this formula of the POWER function inside the LOG function in Excel, providing the base as 4, we will get the exponent, which is passed as a second argument in the POWER function.

LOG POWER Function

The output of the POWER function is passed as the first argument to the LOG function in Excel, and it further computes the result.

We can use the LOG function in Excel in many ways. First, the logarithm helps to solve real-world problems. For example, the magnitude of an Earthquake is calculated as the logarithm of the amplitude of the seismic waves generated.

A LOG formula represents the magnitude of an earthquake:

R=log10(A/A0)

When A is the measurement of the amplitude of an earthquake wave, and A0 is the smallest amplitude recorded of seismic activity. If we have the values of A and A0, we can easily calculate the magnitude of the earthquake in Excel by the LOG formula:

=LOG((A/A0),10)

LOG in Excel Example #2

Suppose we have samples of solutions labeled with alphabets A, B, C….L. We are provided with the ion concentration in µ mol/liter in the Excel sheet in column B. We want to find which solution is acidic, alkaline, or water. The data table is given below:

LOG Example 2

The acidic and the basic nature of a chemical solution are measured by its pH value, which is calculated by the formula:

pH=-log10

If pH is less than 7, it is an acidic solution; if a pH is greater than 7, it is a basic(alkaline) solution, and when pH is 7, it is neutral, which is neither acidic nor basic like water.

So, to find the acidic and basic nature of the solution, we will use the LOG in Excel and check if the logarithmic value is less than, greater than, or equal to 7.

Since the given hydrogen concentration is in a unit of µmol/liter, the value will be X*10-6

So, the LOG in Excel to find the nature of the solution.

=IF(-(LOG(B4*POWER(10,-6),10))<7,"Acidic",IF(-(LOG(B4*POWER(10,-6),10))>7,"Alkaline","Water"))+

Computing the value of Log of concentration * Power(10,-6) since the unit used is µmol/liter and checking, using the IF function if the value is greater than, less than, or equal to 7.

Using the formula in other cells, we have,

LOG Example 2--1

Output:

LOG Example 2-3
LOG Example 2-4

The solution labeled with I has a pH value equal to 7. Hence, it is pure water.

LOG in Excel Example #3

In computer science, every algorithm has its efficiency measured in how fast it fetches the result or gives an output. This efficiency is calculated technically by the time complexity. Time complexity describes the amount of time an algorithm will take to execute.

There are different algorithms for searching an item in an array list, e.g., bubble sort, quick sort, merge sort, binary sort, etc. Moreover, every algorithm has different efficiency in terms of its time complexity.

To understand, consider an example.

We have a sorted array,

LOG Function (Array)

We want to search for the number 18 from the data array.

This algorithm follows the divide and rule methodology, where it divides the set equally at each step of iteration and searches for the item. When it finds the item, the loops (iteration) get terminated and return the value.

Step 1:

log array step 1

Step 2:

log array step 2

 Step 3:

log array step 3

 Step 4:

log array step 4

We found number 18 at position 9, and it took four steps to search the item using the binary search algorithm.

So, the complexity of the binary search is calculated as:

 log2N, where n is the number of items.

=LOG(16,2) = 4

LOG Array

Hence, to search for an item in an array of items, the binary search will take log2N steps.

Suppose we are provided with a list that contains the total number of items, and to search for an item from these items, we are using the Binary search algorithm. First, we have to find how many steps it will take to find an item from the given items.

LOG Example 3

Again, we will use the LOG in Excel to calculate the complexity.

The LOG formula will be: = ROUND(LOG(A6,2),0)

The result could be in decimal, so we have rounded the result of 0 places of digits.

Concatenating with the “String Steps Required is,” we have:

=”Steps Required are”&” “&ROUND(LOG(A6,2),0)

LOG Example 3-1

For searching for an item from an array of 1000000 items, the binary search will take only 20 steps only.

The LOG functions are also widely used in economics for stock price indexing graphs. These graphs are very useful for checking the prices going down or up.