Music and Mathematics. Finding the natural scale matemathically. Is this correct?
- by Alfonso de la Osa
Hi!
I wrote this post
Music and Mathematics, finding the Natural and the Pentathonic scales. Central A at 383,56661 Hz.
Is a method to find the Natural scale. I want to discuss it and find if its true. This is the code of the reasoning in js.
<script>
var c = 1.714285714285714;
var tot = 0;
var scale = [];
while(tot < (14 - c)){
tot += c;
scale.push(Math.round(tot));
}
if(scale.length == 8){
document.write(scale + " " + c + "<br />");
}
</script>