SOLUTION: how many odd numbers are there greater than 1000 and less then 100000

Algebra ->  Permutations -> SOLUTION: how many odd numbers are there greater than 1000 and less then 100000      Log On


   



Question 933287: how many odd numbers are there greater than 1000 and less then 100000
Answer by Edwin McCravy(20056) About Me  (Show Source):
You can put this solution on YOUR website!
how many odd numbers are there greater than 1000 and less then 100000.
There are three methods to do this.  Take your pick.

----------------------------------------
Method 1:

First find the number of counting numbers greater than 1000 and lestt than 100000.

There are 99999 counting numbers from 1 to 99999, inclusive and we must subtract
the first 1000, leaving 99999-1000 = 98999.  Half that is 49499.5. Since the
first number is 1 and the last number is 99999, and they are both odd, then
there are 49499 even ones and 49500 odd ones.
Answer: 49500.


---------------------------------------
Method 2;

4 digit numbers:
Choose the 1st digit 9 ways, {1,2,3,4,5,6,7,8,9}
Choose the 2nd digit 10 ways, {0,1,2,3,4,5,6,7,8,9} 
Choose the 3rd digit 10 ways, {0,1,2,3,4,5,6,7,8,9}
Choose the 4th digit 5 ways,  {1,3,5,7,9}

9x10x10x5 = 4500

5 digit numbers:
Choose the 1st digit 9 ways, {1,2,3,4,5,6,7,8,9}
Choose the 2nd digit 10 ways, {0,1,2,3,4,5,6,7,8,9} 
Choose the 3rd digit 10 ways, {0,1,2,3,4,5,6,7,8,9}
Choose the 4th digit 10 ways, {0,1,2,3,4,5,6,7,8,9}
Choose the 1st digit 5 ways,  {1,3,5,7,9}

9x10x10x10x5 = 45000

Total:  4500+45000 = 49500

-----------------------------------
Method 3:

The odd numbers from 1001 through 49999 form an arithmetic
sequence with a%5B1%5D=1001, a%5Bn%5D=99999, and d=2.  So we use
the formula:

a%5Bn%5D=a%5B1%5D%2B%28n-1%29d 
99999=1001%2B%28n-1%292
99999=1001%2B2n-2
99999=999%2B2n
99000=2n
49500=n 

Edwin