document.write( "Question 1203679: contest consists of finding all of the code words that can be formed from the letters in the name \"ATARI.\" Assume that the letter A can be used twice, but the others at most once.
\n" );
document.write( "A) How many five-letter words can be formed?
\n" );
document.write( "B) How many two-letter words can be formed?
\n" );
document.write( "C) How many words can be formed? \n" );
document.write( "
Algebra.Com's Answer #839454 by greenestamps(13200)![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "1-letter words.... \n" ); document.write( "There are 4 different letters to choose from. \n" ); document.write( "The number of 1-letter words is 4. \n" ); document.write( "2-letter words.... \n" ); document.write( "If both letters A are used, there is only 1 word -- AA \n" ); document.write( "If the letter A is not repeated, then there are 4 choices for the first letter and then 3 choices for the second, so there are 4*3=12 2-letter words without both letters A. \n" ); document.write( "The number of 2-letter words is 1+12 =13. \n" ); document.write( "3-letter words.... \n" ); document.write( "If both letters A are used, then the combination of letters can be AAI, AAR, or AAT. There are (3!)/(2!) = 3 arrangements of each of those, for a total of 9. \n" ); document.write( "If both letters A are not used, then there are 4 choices for the first letter, 3 for the second, and 2 for the third, for a total of 4*3*2 = 24. \n" ); document.write( "The number of 3-letter words is 9+24 = 33. \n" ); document.write( "4-letter words.... \n" ); document.write( "If both letters A are used, then the combination of letters can be AAIR, AAIT, or AART. There are (4!)/(2!) = 12 arrangements of each of those, for a total of 36. \n" ); document.write( "If both letters A are not used, then the letters are ATRI in any order; there are 4! = 24 of those. \n" ); document.write( "The number of 4-letter words is 36+24 = 60. \n" ); document.write( "5-letter words.... \n" ); document.write( "The letters are ATARI in any order, the number of arrangements is (5!)/(2!) = 60. \n" ); document.write( "There are 60 5-letter words. \n" ); document.write( "Summary: \n" ); document.write( "1-letter words: 4 \n" ); document.write( "2-letter words: 13 \n" ); document.write( "3-letter words: 33 \n" ); document.write( "4-letter words: 60 \n" ); document.write( "5-letter words: 60 \n" ); document.write( "Total number of words: 4+13+33+60+60 = 170 \n" ); document.write( "ANSWERS: \n" ); document.write( "A) 5-letter words: 60 \n" ); document.write( "B) 2-letter words: 13 \n" ); document.write( "C) total number of words: 170 \n" ); document.write( " \n" ); document.write( " |