Chord Scales

1. Consist entirely of only half steps and whole steps.
2. "Wrap" back to the starting note after exactly one octave.
3. Contain no two consecutive half-steps, even when "wrapping" to the octave above or below.

These rules generate exactly 17 Chord Scales starting on any given note (click here to view source code for a C++ computer program that demonstrates this). They are all conventionally used in jazz harmony. There are 7 modes each of the major and melodic minor scale (7 notes), two diminished scales (8 notes), and one whole tone scale (6 notes):

#codeconstructionnamemajor
mode #
mel. min.
mode #
185H W H W H W H Wauxiliary diminished
294H W H W W W W"altered," diminished whole tone7
3110H W W H W W WLocrian, half-diminished7
4118H W W W H W WPhrygian3
5122H W W W W H WPhrygian +6, Dorian -22
6170W H W H W H W Hdiminished
7174W H W H W W WLocrian #26
8182W H W W H W WAeolian, pure minor6
9186W H W W W H WDorian2
10188W H W W W W Hmelodic minor1
11214W W H W H W WMixolydian -6, "Hindu"5
12218W W H W W H WMixolydian5
13220W W H W W W HIonian, major1
14234W W W H W H WLydian dominant, Mixolydian +44
15236W W W H W W HLydian4
16244W W W W H W HLydian +53
17252W W W W W Wwhole tone

The "code" represents the lowest numeric occurrence occurrence (unneccessary LSBs discarded) when the scale's construction is considered an 8-bit binary value with H=0 and W=1.

Funky Extensions

There are a few exceptions to Jim Knapp's concept of jazz chords having four "functions." In this theory, chord extensions replace a normal "function" according to the following:

FunctionSubstitute tone
above
Substitute tone
below
root9th
3rd11th (sus4)sus2
5th13th11th
7th15th6th

From Jim's text: "When a substitute tone is present in a chord, then that tone becomes the chord tone and the original function becomes a passing tone or in-between tone. For example in a (sus4) chord, the 3rd is not a chord tone."

Chords with a "10th" Extension
However, a dominant (sus4) chord sounds good with the 3rd added on top. This does not work if the 3rd is below the 11 since this typcially creates an "illegal -9 interval" (a -9 interval not relative to the bass) which almost always sounds bad. Using Jim's notation, then, the third function is duplicated, and this chord would be called

C7(sus4,add 3)

but this symbol doesn't fully convey the information that the 3 goes on top, like an extension. Dave Peck proposes the following symbol:

C7(sus4,10)

Chords with a "12th" Extension

Dave has devised a similar notation for augmented chords after he noticed that any +5 chord can take a natural 5 as an extension:

C+7(12)     i.e. C, E, G#, Bb, G
Cmaj7(#5,12)     (good chord, but generates invalid chord scale)
Cm(#5,12)     i.e. C, Eb, G#, G

Here the difference with Knapp's system is greater, since Knapp would call the notes of the last example "Cm(-6)," which implies that the G# is performing the 7th function. There is no clear way to specify the 5 as an extension in this case.