Question 1054855
<pre><b>
There are 26 lower case letters and 10 digits, 
that's 36 characters.

First of all we'll calculate the number whether they contain a 
digit or not, and then we'll subtract the ones with all letters.

Case 1: The number of passwords with 6 characters whether they contain
a digit or not.

Choose the 1st character any of 36 ways.
Choose the 2nd character any of 36 ways.
Choose the 3rd character any of 36 ways.
Choose the 4th character any of 36 ways.
Choose the 5th character any of 36 ways.
Choose the 6th character any of 36 ways.
That's (36)(36)(36)(36)(36)(36) = 36<sup>6</sup>.

From that we must subtract the number of 6-character 
passwords with all letters.

Choose the 1st letter any of 26 ways.
Choose the 2nd letter any of 26 ways.
Choose the 3rd letter any of 26 ways.
Choose the 4th letter any of 26 ways.
Choose the 5th letter any of 26 ways.
Choose the 6th letter any of 26 ways.

That's (26)(26)(26)(26)(26)(26) = 26<sup>6</sup>
That's 26<sup>6</sup> with no digits, just letters.

So the number of 6-character passwords is

 36<sup>6</sup> -  26<sup>6</sup> = 1867866560

------------------

By the same reasoning the number of 7-character
passwords is 
 
 36<sup>7</sup> -  26<sup>7</sup> = 70332353920

------------------

Also by the same reasoning, the number of 8-character
passwords is

 36<sup>8</sup> -  26<sup>8</sup> = 2612282842880

---------------------------------------------

Answer: 36<sup>6</sup> -  26<sup>6</sup> + 36<sup>7</sup> -  26<sup>7</sup> + 36<sup>8</sup> -  26<sup>8</sup> = 2684483063360

Edwin</pre></b>