How many different paths from top to bottom spell ALGEBRA?
Have you ever seen Pascal's Triangle? Each element in it is made by adding the two numbers directly above it.
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
1 6 15 20 15 6 1
One interesting property of the triangle, is that if you use the rules you stated, each element's value denotes how many ways there are to get to that position from the top
So all you need to do is to add together all the entries of row 7, which will give you how many unique ways there are to go from row one to row 7 following your stated rules.
$$1 + 6 + 15 + 20 + 15 + 6 + 1 = 64$$
BTW, there is a formula for summing an entire row, because the total value of the row essentially doubles every time you go one down. So
$$\sum = 2^{rowNumber-1}$$
If you want to know more about how it works: TED-Ed Video
The answer is $64$. In fact for any $n$ letter word, the answer will be $2^{n-1}$.
We can prove this by induction:
- The base case for $n=1$ is trivially true with exactly one way.
Consider any element $(i,j)$ in the pyramid. For any such cell there are two paths we can take, go left or go right, hence if the number of ways to reach $(i,j)$ is $m_{i,j}$, then total number of ways to reach row $i+1$ will increase by $2*m$ for all $j \in [1,i]$. This total will be $\sum_{j=1}^{i} 2 \times m_{i,j}$. Via the induction assumption we know that this sum is $\sum_{j=1}^{i} m_{i,j} = 2^{i-1}$. Thus the total number of ways to reach row $i+1$ is $2^{i}$.
Q.E.D.
Interestingly, the number of ways to reach two columns in the same row of the pyramid are not necessarily the same. But the sum of the number of ways to reach all such columns in a particular row will always add up to a power of $2$. This is due to the fact the number of ways to reach $(i,j)$ is actually the binomial coefficient $\binom{i}{j}$ and $\sum_{i=0}^{n} \binom{n}{i} = 2^n$