For my algorithms class, the professor has this question as extra credit:
The Phicitlius Bauber bird is believed to never sing the same song twice.
Its songs are always 10 seconds in length and consist of a series of notes that are either high or low pitched and are either 1 or 2 seconds long.
How many different songs can the Bauber bird sing?
This strikes me as a combinatorial problem, but I'm having trouble figuring out the exact formula to use to fit the included variables of 10 seconds length, 2 notes and 2 note periods.
At first, I thought that $\binom{10}{2}*\binom{10}{2}$ can be a solution, since it fits finding all combinations of both and multiplies the total.
My issue is this results in a total of 2025 possible songs, and this just seems a little on the low side.
Any assistance is appreciated.