Open round | 5 points | 84.62% | Problem statement | Official solution | Tags: ComputationalPuzzle
Nothing to say about E1: just count the letters. is the ratio of the previous two columns.
In E2, just find the letter with the highest probability that it follows k. The probabilities are 1/6, 1/6, 1/12, and 7/12, so the answer is a with 7/12.
In E3, the problem says that Bengalese finch song is more predictable than human speech, so we want to find two strings where one letter transitions more deterministically to another. The real way to do it is of course to count all transitions. Since we are doing this in posterity anyway, I actually wrote a program to do this.

It's obvious that sequences B and C feature fewer transitions, with most concentrated along a diagonal, while A and D have the transitions spread out more evenly across all combinations.
In the real test, it's probably impossible to enumerate all 121 transitions for 4 sequences. The next best thing is to count the number of letters each letter can be followed by. For example, for sequence A:
For sequence B:
It's still a really painful process (52 transitions to check for each sequence), but much easier to manage by hand, and the results are easy to visualize.
In E4, we just need to find a sequence with the matching probabilities.
.40 must be RE..15 transition can be either R or S. However, the next one is .20 and R has no .20 transition, so it must be S..20 transition must be T..05 transition can be either L or S, but S has no .35 transition, so it must be L.Again, very tedious to do by hand, but not a lot of thinking involved—just reuse the same way of reasoning as above.