Skip to main content

"The hawaiian" has 11 letters. How many permutations are possible for five of these letters?

This problem is much more difficult. Let's try to solve it.


First, assume temporarily that two "i" letters are different, call them i_1 and i_2. Also call three "a" as a_1, a_2 and a_3, and two h as h_1 and h_2.


Then there are 11*10*9*8*7 = 55440 possible "words" (the first letter is any of 11, the second is any of 10 and so on). But because equal letters actually make the same "words", some "words" was counted twice or more times. We have to subtract the number of "parasitic" counts although it is relatively small.


The words that counted more than once are divided into several disjoint sets:
1) with two i's but without repetitions of a and h;
2) with two h's but without repetitions of a and i;
3) with two a's but without repetitions of i and h;
4) with three a's but without repetitions of i and h;
5) with two i's and two a's;
6) with two i's and tree a's;
7) with two i's and two h's
8) with two h's and two a's;
9) with two h's and tree a's.


The first group contains words counted twice and its size is (5*4) * (6*5*4) = 2400 (the first i at one of the 5 places, the second at one of 4, then 11-2i-1h-2a=6 different letters remain). So we have to subtract 2400/2 = 1200. The group 2 also gives -600, and the group 3 too.


The group 4 gives (5*4*3) * (6*5) = 1800 and the words are counted 6 times, -300.


Groups 5, 7, 8: 5*4*3*2*6 = 720 and counted 4 times, so -180.


Group 6 and 9: 5*4*3*2*1 = 120 and counted 12 times, -10.


Totally -(1200*3 + 300 + 180*3 + 10*2) = -4460. So the answer is 55440 - 4460 = 50980.


Uff.

Comments

Popular posts from this blog

etymology - Origin of the greeting "Sweet dreams".

Does anybody know the etymology of the phrase "sweet dreams"? I tried googling but did not find anything satisfying. Is this a relatively new phrase of the modern world or has this been in use for some time? I think it's the latter one. Answer The OED has the interjection as "a farewell to someone going to bed" from the 20th century: 1908 Sears Roebuck Catal. 198/1 Tenor Solos..Good Bye, Sweet Dreams, Good Bye. But it goes back until at least the 19th and possibly 18th centuries. John Wolcot, writing under the pseudonym of Peter Pindar, used it in his poem "Orson and Ellen; A Legendary Tale" published in 1801: Also from 1801 in The infernal Quixote (Page 287) by Charles Lucas: In the March 1776 of The Universal Magazine was published "The Serenade. A Pastoral Tale. From the German of Gesner" , where the shepherd Daphnis watches over his beloved as she sleeps and sings: The same tale appears in 1776's as Idyl XI, " Daphnis ...

Is there a word/phrase for "unperformant"?

As a software engineer, I need to sometimes describe a piece of code as something that lacks performance or was not written with performance in mind. Example: This kind of coding style leads to unmaintainable and unperformant code. Based on my Google searches, this isn't a real word. What is the correct way to describe this? EDIT My usage of "performance" here is in regard to speed and efficiency. For example, the better the performance of code the faster the application runs. My question and example target the negative definition, which is in reference to preventing inefficient coding practices. Answer This kind of coding style leads to unmaintainable and unperformant code. In my opinion, reads more easily as: This coding style leads to unmaintainable and poorly performing code. The key to well-written documentation and reports lies in ease of understanding. Adding poorly understood words such as performant decreases that ease. In addressing the use of such a poorly ...

What are the similarities between the relationships of the characters in The Outsiders and Romeo and Juliet?

At first glance, it might appear as if the characters in  The Outsiders  by S. E. Hinton and  Romeo and Juliet  by William Shakespeare do not have much in common; however, when one isolates the core of the conflicts, it becomes clear that the relationships in both stories are rooted in rivalry and secrecy.  In both  The Outsiders  and  Romeo and Juliet , an overarching theme is rivalry. While   socioeconomic status separates the greasers from the Socs in The Outsiders , last names separates the Montagues from the Capulets, who appear to be relatively equal in terms of socioeconomic status. Due to these rivalries, there are instances of deadly interactions in both stories. In  The Outsiders , Johnny kills Bob (whether his actions were justified or not is debatable). In  Romeo and Juliet , Romeo kills Tybalt and Paris, and Tybalt kills Mercutio. These deaths have profound effects on the main characters. In Ponyboy's case, the Johnny's death and other events in the novel inspire h...