What is the least positive integer which should be added to 2497 to make it exactly divisible by 13?
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.
Simple standard approach.
You can improve your argument by explicitly getting the modular result for the integer to be added. Consider that integer as x . The problem states,
2 4 9 7 + x ≡ 0 ( m o d 1 3 ) ⟺ 1 + x ≡ 0 ( m o d 1 3 ) ⟺ x ≡ − 1 ≡ 1 2 ( m o d 1 3 )
Hence, the solution set for x is given by { x : x = 1 3 k + 1 2 ∀ k ∈ Z } . The problem asks for the smallest positive x which is obviously attained at k = 0 which gives the answer as 1 2 .
2497/13 =192.0769231
0.0769231 * 7 =1
13 - 1 = 12
2497 + 12 = 2509/13 = 193
2509 is exactly divisible by 13
12(Ans.)
Problem Loading...
Note Loading...
Set Loading...
2 4 9 7 ≡ 1 ( m o d 1 3 ) 2 4 9 7 − 1 ≡ 0 ( m o d 1 3 ) 2 4 9 6 ≡ 0 ( m o d 1 3 )
So, we see that 2 4 9 6 is divisible by 1 3 . Hence the next number that will be divisible by 1 3 is 2 4 9 6 + 1 3 = 2 5 0 9 .
Hence the least number to be added to make 2 4 9 7 divisible by 1 3 is 2 5 0 9 − 2 4 9 7 = 1 2