How many positive integers strictly less than 350 are divisible by 5 or 7?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Numbers are less than 350 means 350 is not included.
N(5) means multiples of 5.
N(7) means multiples of 7.
N(5&7) means multiples of 5&7 both.
N(5)=350/5=70.
N(7)=350/7=50.
N(5&7)=350/35=10.
N(5 or 7)=N(5)+N(7)-N(5&7)=70+50-10=110.
but 350 is also not included means 110-1=109