learn.howToCalculate
learn.whatIsHeading
A logarithm is the inverse of exponentiation. log_b(x) answers "to what power must b be raised to get x?" Common logarithm (base 10) is used in science; natural logarithm (base e) in calculus; binary logarithm (base 2) in computer science.
단계별 가이드
- 1log_b(x) = n means b^n = x
- 2Common log: log₁₀(1000) = 3 because 10³ = 1000
- 3Natural log: ln(e) = 1 because e^1 = e
- 4Change of base: log_b(x) = log(x) / log(b)
풀어진 예시
입력
log₁₀(10,000)
결과
4
10⁴ = 10,000
입력
log₂(256)
결과
8
2⁸ = 256
입력
ln(20.09)
결과
≈ 3
e³ ≈ 20.09
계산할 준비가 되셨나요? 무료 Log 계산기를 사용해 보세요
직접 시도해 보세요 →