Answer the question
In order to leave comments, you need to log in
How many sounds does the piano make?
I am learning to play the piano.
If there are approximately 10 ^ 118 unique combinations in chess, with a layout of 8 * 9 = 64, then here, on the piano, there are 88 keys (52 white and 36 black, do not count: sound length, rhythm, pauses, but we take 10 fingers when calculating hands, and the range they can reach).
How many possible combinations with 88 keys?
How many of them are humane? (according to the calculation, 88 keys simultaneously pressed sound worse than a correctly set chord, it is possible to calculate this indicator using all possible combinations that are used on stage).
Answer the question
In order to leave comments, you need to log in
as far as I know, musicians need to train to be able to press a note in one octave with one hand and the same note in the next octave. that is, 1 and 13. we assume that he can press any keys between them (in life, not any will turn out, at least not for everyone).
thus, how many combinations can be typed with one hand, starting from any conditional first note (this note will not necessarily be pressed):
2 ^ 13 = 8192
, that is, these are combinations of everything. 13 notes where each can be pressed.
but with one hand we can only type 5 keys from them.
let's write a simple script that counts the number of combinations with a maximum of 5 clicks by enumerating.
<?php
$cnt = 0;
for ($i = 1; $i <= 8192; $i++) {
$bitCount = substr_count(decbin($i), '1');
if ($bitCount <= 5) {
$cnt++;
}
}
echo $cnt; // 2380
How many of them are humane?
The answer also depends on the BACKGROUND.
Those. the same chord in a jazz composition will sound good and out of place, but in the classics it will sound terrible. Some kind of C7b5 is typical for bossa nova, and you won't find it in academic music.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question