Finding the 1000th positive integer with an odd number of digits.
Positive integers would start from 1.
From 1, 2, 3, 4, ...., 9 This has odd number of digits which is 1 digit. Number of digits = (9 + 1) - 1 = 9.
From 10, 11, 12,......, 99 Has 2 digits, it is not odd number of digits. So it is exempted.
From 100, 101, 102, 103, ......, 999, This has odd number of digits which is 3. Number of digits = (999+ 1) - 100 = 900
Total = 900 + 9 = 909
Number left = 1000 - 909 = 91.
From 1000, 1001, 1002, 1003,......., 9999 would be exempted because it has 4 digits and it is not odd number of digits.
Recall there are 91 left.
From 10000 has odd number of digits which is 5.
From 10000, 10001, 10002, 10003, 10004,......., 10090
Number = (10090 + 1) - 10000 = 91.
So the 1000th positive integer with odd number of digits is 10090