More ways of splitting the octave

in an earlier post I said that the arithmetic mean of two frequencies an octave apart is an interval of a perfect fifth, and the geometric mean gives a tritone. This post will look at a few other means.

Intervals

The harmonic mean (HM) gives a perfect fourth.

The arithmetic-geometric mean (AGM) gives a pitch about midway between a tritone and a fifth, a tritone plus 50 cents.

The arithmetic mean gives a perfect fifth.

The contraharmonic mean gives an interval of a major sixth.

The intervals for HM, AM, and CHM are exact, using just tuning. The intervals for GM is exact using equal temperament. The AGM is not close to a chromatic tone in any system.

If we take the means of A 440 and A 880, the AGM is an E half-flat (hence the backward flat sign above).

Equations

Here are the equations for the various means:

\begin{align*} HM(a, b) &= \frac{2ab}{a + b} \\ GM(a, b) &= \sqrt{ab} \\ AM(a, b) &= (a + b)/2 \\ CHM(a, b) &= \frac{a^2 + b^2}{a + b} \end{align*}

The AGM is defined iteratively: Take the GM and AM of the pair of numbers, then take the GM and AM of the result, and so on, taking the limit. More detail here.

Frequencies

Here are the frequencies of the means.

    |------+-----|
    | Mean |  Hz |
    |------+-----| 
    | HM   | 586 |
    | GM   | 622 |
    | AGM  | 641 |
    | AM   | 660 |
    | CHM  | 733 |
    |------+-----|

Lilypond

Here’s the Lilypond code that was used to create the music notaton above.

\begin{lilypond}

\new Staff \with { \omit TimeSignature} {
  \relative c''{
     <a d>1 <a ees'>1 <a eeh'>1 <a e'>1 <a fis'>1 |
  }
  \addlyrics{"HM" "GM" "AGM" "AM" "CHM" }
}

\end{lilypond}

Update: Two octaves

What if we look at frequencies two octaves apart, 220 Hz and 880 Hz? You might expect the size of the intervals to double. That intuition is exactly correct for the geometric mean: a tritone is half an octave (on a log scale) and so two tritones is an octave.

This intuition is also approximately correct for the arithmetic-geometric mean. But it over-estimates the harmonic mean and under-estimates the arithmetic and contraharmonic means.

3 thoughts on “More ways of splitting the octave

  1. Isoraķatheð Zorethan

    It would be great to be give these intervals in cents as well as explicitly state that the ratios to be compared to are 12edo. The contraharmonic mean is exactly the just major sixth, for example.

  2. Thanks. I was looking at this page for converting frequency to pitch for the GM and AGM, which uses equal temperament. But you’re right that the CHM gives exactly a sixth in just tuning; it’s a little sharp using equal temperament.. I updated the post.

  3. Isoraķatheð Zorethan

    I haven’t had the opportunity to compute the AGM specifically, but its interval is surprisingly close to the undecimal subfifth, 16/11, to within 3c or so. To 5sf, 16/11 is 648.68c. On top of A440 that’s 640 Hz exactly, so they’re not the same number, but it is surprising in terms of how small the denominator is.

    Circles I’m familiar with typically express precise intervals in cents without reference to a specific root pitch though I appreciate that writing for a more general audience a conversion to Hz based on A440 is reasonable. Expressing in cents or frequency ratios primarily aids in using interval finders. I use xen-calc to search for approximations.

Comments are closed.