What is the smallest positive integer which is a multiple of 7, yet it gives a remainder of 1 when divided by any of 2, 3, 4, 5, or 6?
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.
If only your typing were as good as your maths!
l c m ( 2 , 3 , 4 , 5 , 6 ) = 6 0 .
So the number is of the form, 6 0 k + 1 .
Now,
6 0 k + 1 ≡ 0 ( m o d 7 ) ⇒ 6 0 k ≡ − 1 ( m o d 7 ) ⇒ 6 0 k ≡ 6 ( m o d 7 ) ⇒ 1 0 k ≡ 1 ( m o d 7 ) [ g c d ( 7 , 6 0 ) = 1 ] ⇒ 1 0 k ≡ − 2 1 + 1 ( m o d 7 ) ⇒ 1 0 k ≡ − 2 0 ( m o d 7 ) [ g c d ( 7 , 2 0 ) = 1 ] ⇒ k ≡ − 2 ( m o d 7 ) ⇒ k ≡ 5 ( m o d 7 )
So minimum positive value k = 5 gives the number 6 0 × 5 + 1 = 3 0 1
let x be the number. We have x = 1 ( mod 2 , 3 , 4 , 5 and 6 ) lcm [ 2 , 3 , 4 , 5 , 6 ] = 6 0 Therefore x = 1 ( mod 6 0 ) and x = 0 ( mod 7 ) such smallest positive number is 3 0 1 .
The numbers divided by 5 gives 1 remainder means it should end either 1 or 6. But in case of number ends with 6 will be divided by 2. So only number ending with 1 have to consider. Also the number should be divisible by 7. So when number ending with 3 is multiplied by 7 will give result of number ending 1. So, possibilities are 7 * 3, 7 * 13, 7 * 23, etc
In that least number which solves this problem 7 * 43 = 301.
There is a simpler way to solve this. Can you find it?
The least common multiple of 2, 3, 4, 5 and 6 is equal to 60. So we need to find out the lowest natural number value of i at which 60i + 1 is divisible by 7. And here, i = 5. Thus, the answer is 301.
Log in to reply
Here's a systematic way to show that i = 5 works without guessing:
7 ∣ 6 0 i + 1 ⟹ 7 ∣ 4 i + 1 ⟹ 4 i ≡ ( − 1 ) ≡ 6 ( m o d 7 )
Now, since g cd ( 2 , 7 ) = 1 , we get,
2 i ≡ 3 ( m o d 7 ) ⟹ i ≡ 3 × 2 − 1 ( m o d 7 )
Using Extended Euclidean Algorithm, we find the multiplicative modular inverse of 2 modulo 7 . We get,
i ≡ 3 × 2 − 1 ≡ 3 × 4 ≡ 1 2 ≡ 5 ( m o d 7 )
Hence, i = 7 ω + 5 , ω ∈ Z . Since we need smallest positive integer, we take ω = 0 yielding i = 5 which gives us the answer as 3 0 1 .
Let's keep this simple.. The problem says that the number is 7 times something.
It also says that It leaves a remainder when divided by those numbers 2, 4 3, 5, 6, .
What this simply means is that the multiple to be multiplied by 7
cannot be a multiple of 2, or , 3, or 5 !!
So 7 must be multiplied by a prime number.
Take the largest number in the list, multiply by 7 then add 1.
So the number to be multiplied by 7 is 43 !!
43 * 7 = 301 !!
Let's keep this simple.. The problem says that the number is 7 times something. It also says that It leaves a remainder when divided by those numbers 2, 4 3, 5, 6, .
What this simply means is that the multiple to be multiplied by 7 cannot be a multiple of 2, or , 3, or 5 !!! So 7 must be multiplied by a prime number.
Take the largest number in the list, multiply by 7 then add 1. So the number to be multiplied by 7 is 43 !!!
43 * 7 = 301 !!!!
Problem Loading...
Note Loading...
Set Loading...
Please don't go complicated just take their lcm(23456)which comes out to be 60 and add 1 to it =61now this no will remainder 1 in each of above numbers now keep adding 60 to it until thee comes a no divisible by 7and ans will be 301