A number is chosen at random from the first 1,000 positive integers. What is the probability that it's divisible by 3,5, or 7?
So I started off by breaking the problem up and having:
divisible by 3: p(a)
divisible by 5: p(b)
divisible by 7 p(c)
I know I'm going to apply the exclusion inclusion principle, but how do I find out how many numbers are divisible by each without going through all the numbers between 1 and 1000?