The integers from I to 1000 are written in order around a circle.
Starting at I, every fifteenth number is marked (that is, I, 16, 31, etc.).
This process is continued until a number is reached which has already
been marked. How many unmarked numbers remain?
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.
number which leaves remainder 1 , 6 , 11 upon division by 15 are marked , so these number leaves remainder 1 when divided by 5.
total marked number are 1000/5=200. thus unmarked number are 800.
numbers of the form 15k+1 (case 1), 15k+6 (case 2) and 15k+11 (case 3) are marked. So, the last number marked in each case will be 991, 996 and 986 respectively. total numbers marked in the 1st and 2nd case will be 66+66=132. No. of numbers marked in the 3rd case will be 65. So, according to me, the answer should be
1000-(66+66+65)=803
Log in to reply
There are actually 67 numbers in the sequence 1 , 1 6 , 3 1 , … 9 9 1 . While you may solve that k = 6 6 , you forget the case when k = 0 , which gives you 1 5 k + 1 = 1 . Remember that in an AP, the number of terms is common difference Last - First + 1 . Many people forget the +1.
As such, your answer is off by 3 (1 each for each sequence), and 8 0 3 − 3 = 8 0 0 is the correct answer.
Even I did the same way.........the answer should be 803
Problem Loading...
Note Loading...
Set Loading...
we see a sequence - 1 , 1 6 , 3 1 . . . . . . . . . . . .
n t h t e r m = 1 5 n − 1 4
Now
( 1 5 n 1 − 1 4 ) − ( 1 5 n 2 − 1 4 ) ( can you answer why?)
should be a multiple of 1000 ,
then only this is possible it is equal to 3000.
n 2 = 1 , n 1 = 2 0 1
so 201th number will repeat , hence only 200 will be marked . thus unmarked is 800