How many 5 letter palindromes can be made using an alphabet with 5 letters?

  • Thread starter Maria76
  • Start date
In summary, the number of palindromes in an alphabet with 4 letters is 64, and the formula for finding the number of palindromes in an alphabet with n letters is (n * n) * n.
  • #1
Maria76
14
0
Hi,

Here is a weird question (I hope you don't mind).

Let's say we have an alphabet with only 4 letters (A, B, C, D)? How many combinations of give us palindromes (i.e. they read the same way backwards and forwards)? I count 36 possible combinations -
AAAA BAAB CAAC DAAD EAAE FAAF
ABBA BBBB CBBC DBBD EBBE FBBF
ACCA BCCB CCCC DCCD ECCE FCCF
ADDA BDDB CDDC DDDD EDDE FDDF
AEEA BEEB CEEC DEED EEEE FEEF
AFFA BFFB CFFC DFFD EFFE FFFF

This is the same number with an alphabet of only 3 letters -.
AFA, AEA, ADA, ACA, ABA, AAA
BFB, BEB, BDB, BCB, BBB, BAB
CFC, CEC, CDC, CCC, CBC, CAC
DFD, DED, DDD, DCD, DBD, DAD
EFE, EEE, EDE, ECE, EBE, EAE
FFF, FEF, FDF, FCF, FBF, FAF

Is that right?

Now, how about an alphabet with 5 letters? Is there any equation that can be used to determine the number of palindromes, or do I need to use a computer algorithm to work it out.

Thanks,
Maria
 
Mathematics news on Phys.org
  • #2
Hi Maria! :smile:

This should help you to find the formula …

If the word-length is 2n (even), then the number of palindromes is the same as the number of ordinary words of length n.

If the word-length is 2n - 1 (odd), then the number of palindromes is the same as the number of palindromes of length 2n, since you just double the central letter. :wink:
 
  • #3
Maria76 said:
Let's say we have an alphabet with only 4 letters (A, B, C, D)? How many combinations of give us palindromes (i.e. they read the same way backwards and forwards)?

You need to add some limit to the word length. Answer to the question as stated is "infinitely many". Take any, add the same letter at the end and at the beginning, and you have a new palindrome. Repeat ad nauseam.
 
  • #4
Maria76 said:
Hi,

Here is a weird question (I hope you don't mind).

Let's say we have an alphabet with only 4 letters (A, B, C, D)? How many combinations of give us palindromes (i.e. they read the same way backwards and forwards)? I count 36 possible combinations -
AAAA BAAB CAAC DAAD EAAE FAAF
ABBA BBBB CBBC DBBD EBBE FBBF
ACCA BCCB CCCC DCCD ECCE FCCF
ADDA BDDB CDDC DDDD EDDE FDDF
AEEA BEEB CEEC DEED EEEE FEEF
AFFA BFFB CFFC DFFD EFFE FFFF

Why do you also use the letters E and F? I thought your alphabet consists only of the letters A,B,C,D.

To find the number of combinations write down what a palindrome is in general:
xyyx
 
  • #5
Edgardo said:
Why do you also use the letters E and F? I thought your alphabet consists only of the letters A,B,C,D.

To find the number of combinations write down what a palindrome is in general:
xyyx


Additionally, your examples are only 4 letters, not 5.

As shown above, you just need the pattern xy and pair it with it's reverse to get xyyx.

How many xy patterns are there? That's the Cartesian Product of 4 letters taken 2 at a time.

That would be (length of alphabet) * (length of alphabet).
(Or in general, (length of alphabet)**(length of pattern).)

The number of xy patterns is (4*4).

To get 5 letter palindromes, you need to use the pattern xyzyx, so you would need to multiply the number of xy patterns by the length of the alphabet.

Thus, the number of xyzyx patterns is (4*4)*4.

Which can be generated thusly:
Code:
# Python 3.1
import itertools as it
count = 0
alpha = 'abcd'
for h in alpha:
  for i in it.product(alpha,alpha):
    j = ''.join(i)
    k = ''.join(reversed(j))
    print(j+h+k)
    count += 1
print(count)

aaaaa ababa acaca adada baaab bbabb bcacb bdadb caaac cbabc ccacc cdadc daaad dbabd dcacd ddadd aabaa abbba acbca adbda babab bbbbb bcbcb bdbdb cabac cbbbc ccbcc cdbdc dabad dbbbd dcbcd ddbdd aacaa abcba accca adcda bacab bbcbb bcccb bdcdb cacac cbcbc ccccc cdcdc dacad dbcbd dcccd ddcdd aadaa abdba acdca addda badab bbdbb bcdcb bdddb cadac cbdbc ccdcc cdddc dadad dbdbd dcdcd ddddd
64

 

Related to How many 5 letter palindromes can be made using an alphabet with 5 letters?

What is a palindrome with 5 letters?

A palindrome with 5 letters is a word, phrase, or sequence of characters that reads the same backward as it does forward. It is composed of 5 letters and is spelled the same way whether read from left to right or right to left.

What are some examples of palindromes with 5 letters?

Some examples of palindromes with 5 letters include radar, refer, kayak, level, and racecar. These words can be read the same way from left to right and right to left.

How many palindromes with 5 letters are there?

There are a total of 13,200 palindromes with 5 letters in the English language. This includes words, phrases, and character sequences.

Can a palindrome with 5 letters be a number?

Yes, a palindrome with 5 letters can be a number. For example, the number 21112 is a palindrome with 5 digits that reads the same backward as it does forward.

Are there any rules for creating a palindrome with 5 letters?

There are no specific rules for creating a palindrome with 5 letters. However, it is important to use the same 5 letters and maintain their original order when reading the word, phrase, or sequence backward. Some palindromes with 5 letters may also have a meaning or be a commonly used term.

Back
Top