SOLUTION: find the sum of all the numbers between 200 and 600 which are divisible by 16
Algebra.Com
Question 1119937: find the sum of all the numbers between 200 and 600 which are divisible by 16
Found 3 solutions by Theo, MathTherapy, math_helper:
Answer by Theo(13342) (Show Source): You can put this solution on YOUR website!
200 / 16 = 12.5
600 / 16 = 37.5
the first number between 200 and 600 that is divisible by 16 would be 208.
the last number between 200 and 60 that is divisible by 16 would be 592.
208 / 16 = 13
592 / 16 = 37
the number of numbers divisible by 16 between 200 and 600 should be 37 - 13 + 1 = 25.
doing it the hard way by counting all the numbers between 200 and 600 that are divisible by 16 and making it easier by using excel to do the manual labor, i count 25 numbers between 200 and 600 that are divisible by 16.
excel confirms the method is correct and also confirms the solution is good at 25.
here's what the first and last sections of the excel printout show.
you can see from the printouts that the first number divisible by 16 is 208 and the last number divisible by 16 is 592.
Answer by MathTherapy(10552) (Show Source): You can put this solution on YOUR website!
find the sum of all the numbers between 200 and 600 which are divisible by 16
Correct answer:
Answer by math_helper(2461) (Show Source): You can put this solution on YOUR website!
Backing up MathTherapy's answer, using a brute-force method:
perl -e '$sum=0; for($i=200; $i<601; $i++) { if (!($i % 16)) { $sum += $i; } }; print "sum = $sum\n"; '
sum = 10000
RELATED QUESTIONS
Find the sum of all intergers between 1 and 200 that are divisible by... (answered by ewatrrr)
The sum of all the natural numbers from 200 to 600 (both inclusive), which are neither... (answered by ikleyn)
find the sum of all natural numbers between 1 and 100 which are not exactly divisible by... (answered by KMST)
Find all the numbers between 125 and 325 which are divisible by 15 and the sum of whose... (answered by ramkikk66)
Calculate the sum of all natural numbers from 100 to 200 both inclusive which are not... (answered by AnlytcPhil)
find the sum of all integers between 50and500 which are divisible by... (answered by ikleyn)
what is the sum of numbers between 0 and 270 which are divisible by... (answered by htmentor)
Find the sum of all natural numbers from 1 to 300 which are divisible by 3
(answered by Alan3354)
Find the sum of all 4 digit natural numbers of the form 4AB8 which are divisible by... (answered by Edwin McCravy)