document.write( "Question 330559: How many different license plates can be made using 3 letters followed by 3 digits selected from the digits 0 through 9, if letters and digits may be repeated? \n" ); document.write( "
Algebra.Com's Answer #236958 by jrfrunner(365)\"\" \"About 
You can put this solution on YOUR website!
there are 26 different letters (a-z) and 10 digits (0-10)\r
\n" ); document.write( "\n" ); document.write( "3 letters (assuming repetition allowed) = 26*26*26 or 26^3=17576
\n" ); document.write( "3 digits (assuming repetition is alllwed)= 10*10 *10=1000\r
\n" ); document.write( "\n" ); document.write( "so number of plates with 3 letters followed by 3 digtis = 26^3 * 10^3=17,576,000
\n" ); document.write( "
\n" );