i have some question and i'm not sure i solved it well.
How much numbers between 1 to 800 (Naturals) are devided at least by one of the following numbers: 3,4,6.
This is my solution:
Total devided by 3: 800/3 = 266
Total devided by 4: 800/4 = 200
Total devided by 6: 800/6 = 133
Total devided by 3*4 = 800/12 = 66
Total devided by 3*6 = 800/18 = 44
Total devided by 4*6 = 800/24 = 33
Total devided by 3* 4*6 = 800/72 = 11
Total Answer = 266+200+133-66-44-33+11=467
Am I right? Thanks!
You need to look a bit closer at your intersections. The numbers that are divisible by both $3$ and $6$ are not just the numbers that are divisible by $18$. They are actually all the numbers that are divisible by $6$.
Similar mistakes happen with $4$ and $6$ (should be $12$, not $24$) and $3$, $4$ and $6$ (should be $12$, not $72$).
So the final answer is $$ 266+200+133-133-66-66+66=400 $$