Math Fundamentals18 sections · 814 units
Open in Course

Logarithm Notation (Reading the symbols)

Base and argument explained

The notation logb(x)\log_b(x) means "the power you raise bb to get xx." The small number bb is the base, and xx is the argument.

For example, log2(16)=4\log_2(16) = 4 because 24=162^4 = 16. And log10(1000)=3\log_{10}(1000) = 3 because 103=100010^3 = 1000. The base tells you what number you're repeatedly multiplying.

In computer science, you'll mostly see base 22 (binary logarithm). That's because computers work in binary and algorithms often split problems in half.