Maximizing Possibilities: Solving Four-Letter Word Order Question

  • Thread starter Thread starter danizh
  • Start date Start date
danizh
Messages
16
Reaction score
0
Question: How many four letter words can be made in increasing order. For instance, "aade" is a possibility, but "adae" is not.

Solution: I honestly don't understand how I can solve this, I tried making a formula but it doesn't seem to work. The formula I came up with is: 1 + (3 x (25-n)) where n = 0 when the alphabet is a, n = 1 when the alphabet is b, and so forth. Any help would be greatly appreciated since I have to hand in the solution to this problem by tomorrow morning's class.



Thanks.
 
Physics news on Phys.org
Your first letter can be anyone between 1 and 25; call it k.
We have 1<=k<=25
Your second letter can be anyone between k and 25, call it l
We have k<=l<=25
Your third letter can be anyone between l and 25, call it m.
We have l<=m<=25
Your fourth letter can be anyone between m and 25; call it n
We have m<=n<=25.

Thus, counting up all possibilities we've got (call that number P), we may write:
P=\sum_{k=1}^{25}\sum_{l=k}^{25}\sum_{m=l}^{25}\sum_{n=m}^{25}1

What remains is to perform the summation. :smile:
 
Last edited:
Do you need to use the 4 letters a,a,d,e? With the 'a' twice?
In that case, simple counting will do.

Anyhoo, you might as well use numbers instead of letters a,b,c <-> 1,2,3,...
Maybe that's easier to use.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top