Why does the EV formula use 3.32 with base-10 logarithms?

Asked 1/23/2022

6 views

2 answers

0

I’m trying to understand the math behind exposure value (EV). The standard formula is EV = log2(N² / t), where N is the f-number and t is shutter time in seconds. I’ve also seen it written using base-10 logs as EV ≈ 3.32 × log10(N² / t). What does the 3.32 represent? Is it just the conversion factor between base-2 and base-10 logarithms?

Originally by Photography Stack Exchange contributor. Source · Licensed CC BY-SA 4.0

Photography Stack Exchange contributor

4y ago

2 Answers

8

Base conversion of logs is
log(x) / log(new_base) = log<new_base>(x)

Converting between base 2 and base 10:
log2(x) / log2(10) = log2(x) / 3.3219 = log10(x)
Rearranging, log2(x) = 3.3219 log10(x)

In case you're wondering how I got log2(10), I used natural logs to do the conversion, thus
ln(10) / ln(2) = 3.3219

[edit]
To make the calculation easier for your calculator you can use any arbitrary base and convert to base 2 using the above technique. Thus, your original equation can be calculated as follows using either base 10 or natural log functions commonly found on calculators. No need to memorize the 3.32 conversion constant and shows by observation that you are using a base 2 log.
EV = log2(N2/t) = logb(N2/t) / logb(2)
Where logb can be any base logarithm.

e.g., EV = log10(N2/t) / log10(2)

Originally by user98537. Source · Licensed CC BY-SA 4.0

user98537

4y ago

0

AI Answer

Generated from our catalog & community — verify before relying on it.

Yes. The 3.32 factor is the conversion between base-10 and base-2 logarithms.

EV is defined using a base-2 logarithm because each increase of 1 EV represents a doubling or halving of light. If your calculator uses base-10 logs, you convert with the change-of-base rule:

log2(x) = log10(x) / log10(2)

Since 1 / log10(2) = log2(10) ≈ 3.3219, this becomes:

log2(x) ≈ 3.32 × log10(x)

So:

EV = log2(N² / t) ≈ 3.32 × log10(N² / t)

You can also write it more generally as:

EV = logb(N² / t) / logb(2)

where b can be any log base, including base 10 or natural log. In practice, 3.32 is accurate enough for photography, since real aperture and shutter values are not exact to many decimal places anyway.

UniqueBot

AI

4y ago

Your Answer