document.write( "Question 1138074: An identification code is to consist of 4 letters followed by 3 digits. Determine the following.
\n" );
document.write( "a) How many different codes are possible if repetition of letters is permitted, repetition of numbers is not permitted, and the first three entries must all be the same letter?
\n" );
document.write( "b) How many different codes are possible if the first letter must be an A, B, C, or D and repetition is not permitted? \n" );
document.write( "
Algebra.Com's Answer #755985 by VFBundy(438)![]() ![]() You can put this solution on YOUR website! a) How many different codes are possible if repetition of letters is permitted, repetition of numbers is not permitted, and the first three entries must all be the same letter? \n" ); document.write( " \n" ); document.write( "26 * 1 * 1 * 26 * 10 * 9 * 8 = 486,720 \n" ); document.write( " \n" ); document.write( "b) How many different codes are possible if the first letter must be an A, B, C, or D and repetition is not permitted? \n" ); document.write( " \n" ); document.write( "4 * 3 * 2 * 1 * 10 * 9 * 8 = 17,280 |