Earlier quoted context omitted.
There used to be a lot of tempers floating around. For example a lot bach's music is not really supposed to be played in modern equal temper https://www.ethanhein.com/wp/2020/what-does-the-well-tempere... .
I consider the 12 tone scale to be a technology. The historical temperaments were compromise solutions to the problem of getting a useable scale within the skills and patience of the musician. A harpsichord had to be tuned before every performance, by the musician.
Why 12 notes in Western music?
131–140 of 164 posts
Re: Why 12 notes in Western music?
#132Another 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…
Re: Why 12 notes in Western music?
#133A long-winded way of saying that if you want to hit the 3:2 and 4:3 sweet spots "closely enough", dividing the octave into 12 logarithmically equidistant bins works very well, and better than any other number of bins less than 50 (or maybe 30).
Actually, 41 has a better 4th and 5th, only being off by about half a cent, as opposed to being off by about 2 cents. It also has thirds and sixths that are quite a bit better (though still not great), and it has very good 7-limit intervals, which is something 12-EDO has nothing even remotely close to. 31 is generally decent all around, but it has worse 4ths and 5ths than 12-EDO. 53 EDO is even better than 41, having…
Re: Why 12 notes in Western music?
#134Re: Why 12 notes in Western music?
#135Earlier quoted context omitted.
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 perfect fifth is just 150% (3/2) the frequency of the root, just as an octave is 200% (2/1). "What sounds good" is in a certain sense based on the harmonic series, and in that sense it is equivalent to what makes sense mathematically. 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 p…
Re: Why 12 notes in Western music?
#136Another 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…
Re: Why 12 notes in Western music?
#137This 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…
Actually it's just fifths because fourths are just fifths.
And fifths sound good because of physics.
For example the pentatonic scale used in a lot of eastern music is subsumed by the western scale.
Re: Why 12 notes in Western music?
#138When we divide the octave into various equal steps using equal temperament, we find that there is a local maximum at 12, which yields a good approximations for important intervals. But the "why" cannot be explained just using arithmetic. There is a history behind it. Twelve note instruments didn't begin with equal temperament. There are twelve notes in western music because the diatonic scale has 7 notes, and alterat…
Re: Why 12 notes in Western music?
#139"Flying Microtonal Banana" - because why not fret a whole bunch of guitars for 24-Tet and record an album? https://guitar.com/news/music-news/king-gizzard-stu-mackenzi...
[1]: https://www.youtube.com/watch?v=HkYWccNb0-4
[2]: https://en.wikipedia.org/wiki/Harry_Partch%27s_43-tone_scale
Re: Why 12 notes in Western music?
#140Earlier quoted context omitted.
Look at it from a frequency perspective instead of genetic. When you overlay two waveforms that are related x:1, the zero points of the waveforms align. The wave resets at the same instant. If instead the waveforms are related not exactly, then you get a change in where the reset point is that drifts and causes the wave to exhibit beating (changes in volume). If you have a 2:1 (octave) relationship between 2 waveform…
There are some assumptions about phase in there.