Why 12 notes in Western music?
51–60 of 164 posts
Re: Why 12 notes in Western music?
#5212 notes tuned in equal temperament is a workable compromise between musical expressiveness, harmonic ratio accuracy, readability, and finger precision. It's also an established standard, which is a huge deal because it means you have access to a huge established repertoire. A 31-TET acoustic piano would be huge, extremely complicated, and probably unplayable. Smaller instruments mostly just aren't practical. In theo…
Re: Why 12 notes in Western music?
#53Earlier quoted context omitted.
are the post and your comment not mathematically equivalent statements?
Its the use of the musical concept of Fifths that's the key here: We just derive the notes from what sounds good, not what makes sense mathematically? I'm just using Python to mirror the author's analysis -- you can derive "12 notes" pretty much just by using your ear and listening to the Fifths.
A problem is that if you stack perfect fifths to get 12 notes then they won't sound in tune with each other across different keys. It's this issue which forms the crux of the linked post.
Re: Why 12 notes in Western music?
#54This piece is a good example of circular reasoning, isn’t it? The question “Why are there 12 notes in Western scales?” Is answered first by presuming that 4ths and 5ths sound pleasant (to whom? a Westerner?), the “4th” and “5th” being intervals ON a Western scale, which the author then reverse-engineers back to the 12-note scale which they assumed from the start. There are other scales you could start from, in which…
Re: Why 12 notes in Western music?
#55Earlier quoted context omitted.
This is my understanding too. I have a Kurzweil K2500 keyboard from around 1999 that has a bunch of the alternate tunings, including three from that era. The Bach-era tunings weren't what we know of as "equal temperament." Truly equal temperament didn't come around until well after Beethoven was dead. I've always interpreted the "Well-Tempered" in Bach's title to mean that he was brining out the strength of each key.…
> Truly equal temperament didn't come around until well after Beethoven was dead Source for that? The concept and practice certainly existed well before Beethoven's time but it's less clear at which point it became the norm. Even the wikipedia article on 12 TET has "citation needed" for the claim that it happened in the early 19th century.
Might be worth reading:
- https://books.google.com/books/about/The_Effects_of_Unequal_...
- https://www.proquest.com/openview/b22142f819768ae82464aa2679...
Re: Why 12 notes in Western music?
#56Another possible explanation, which I'm surprised the author didn't go through is the "Circle of Fifths" which basically says: Since Fifths sound so great, why not just keep doing that? When we get to the next octave, then come back down. If we get to a place that's "pretty darn close" to another note, then stop. The Python explanation looks like: f = 440 for i in range(13): print(i,f) f = f * 3/2 if f > 880: f=f/2.0…
aplay -d 2 -r $freq
Re: Why 12 notes in Western music?
#57This piece is a good example of circular reasoning, isn’t it? The question “Why are there 12 notes in Western scales?” Is answered first by presuming that 4ths and 5ths sound pleasant (to whom? a Westerner?), the “4th” and “5th” being intervals ON a Western scale, which the author then reverse-engineers back to the 12-note scale which they assumed from the start. There are other scales you could start from, in which…
> 4th and 5th being intervals ON a Western scale.
That is where you went wrong. They are not. They naturally arise as small integer frequency multiples/fractions on any string instrument (wave lengths 1, 1/2, 1/3,...). They are hence quite obvious/loud (and humans recognize patterns as pleasant for whatever reason). Once you have 4ths and 5ths you repeat to get the Western system (handwaving away that this does not actually close, but "rounds" to make it fit into twelve. That is a whole other subject).
This is a pretty good example of inductive reasoning. We want a system that for any note also includes its first few harmonics, show that this implies....
Re: Why 12 notes in Western music?
#58This piece is a good example of circular reasoning, isn’t it? The question “Why are there 12 notes in Western scales?” Is answered first by presuming that 4ths and 5ths sound pleasant (to whom? a Westerner?), the “4th” and “5th” being intervals ON a Western scale, which the author then reverse-engineers back to the 12-note scale which they assumed from the start. There are other scales you could start from, in which…
Most of the notes on the Western scale fall into this orientation, i.e. there is reasoning for it. It's not just arbitrary.
Re: Why 12 notes in Western music?
#59A = 1
E = 3/2
B = 9/8 (here we halved to get back into our 1–2 range)
F# = 27/16
C# = 81/64 (another halving)
etc.
Another approach is to use harmonic overtones. When a string (or a column of air) vibrates, it vibrates not just at its fundamental, but in a series of integer divisions of the string.¹
Fundamental: A
Octave (½): A' (up an octave)
Twelfth (⅓): E (up a fifth from the octave)
Double Octave (¼): A''
⅕: C#²
⅙: E
⅟₇: G (but a bit flat from most tunings).
We invert wavelength to get frequencies and halve to get into the 1–2 range and our E matches up at 3/2 and C# comes out as 5/4 which is pretty close to the 81/64 of Pythagorean
I would also note that 24-tone music does occur with some moderate frequency in avant-garde music where half-flats and half-sharps have their own notation, although these notes are not easily accessible from many standard instruments, but the sound of a quarter-tone difference in pitch is definitely distinct. Many non-Western musics apply various micro-tonalities, such as Indonesian scales which are closest to a subset of a 9-tone equal temperament.
⸻
1. In some cases, e.g., overtones of a cylindrical pipe vs conical pipe, or open at both ends vs open at one end, you won’t get all of these tones, so a flute, which is cylindrical and open at both ends can hit the fundamental and the octave, while a clarinet, which is cylindrical but closed at one ends hits the fundamental and then the third partial (the twelfth) but not the octave.
2. The place where you hear notes produced to these pitches most commonly is in bugle calls: Taps, for example, would be ⅓ ⅓ ¼, ⅓ ¼ ⅕, etc.
Re: Why 12 notes in Western music?
#60This piece is a good example of circular reasoning, isn’t it? The question “Why are there 12 notes in Western scales?” Is answered first by presuming that 4ths and 5ths sound pleasant (to whom? a Westerner?), the “4th” and “5th” being intervals ON a Western scale, which the author then reverse-engineers back to the 12-note scale which they assumed from the start. There are other scales you could start from, in which…
Thank you! After reading the article I was left unsatisfied, but couldn't put my finger on it. I was somewhere around thinking that we hadn't yet established why 4th and 5th intervals were particularly special and so I couldn't see why the conclusion worked. You nailed it.
Other responses to the GP have explained that. The article itself also mentions the reason (small integer ratios).