n 2 = 3 6 0 k + 1
If k ∈ [ 0 , 3 6 0 ] , then find the total number of possible values of integers k such that there exists an integer n that satisfies the equation above.
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.
Could u pls explain why is n modulo 8, 3 and -3?? Thanks
If n 2 ≡ 1 ( m o d 8 ) , then n ≡ ± 1 , ± 3 ( m o d 8 ) . Why? Work backwards.
n 2 ≡ 1 ( m o d 8 ) implies that n 2 − 1 is divisible by 8. So at least one of n − 1 , n + 1 is divisible by 8. Can you figure it out from here?
Yes I can Thanks
Agreed: 1, 19, 71, 89, 91, 109, 161, 179, 181, 199, 251, 269, 271, 289, 341, and 359.
Log in to reply
Thanks for reporting. I have updated the answer to 16.
Why is 0 not a solution ?
Log in to reply
It is a solution. Jon is listing out the values of n , instead of k .
E.g. 1 9 2 = 3 6 0 × 1 + 1 , whereas 3 6 0 × 1 9 + 1 = 6 8 4 1 is not a perfect square.
What is the proper method to arrive at that? @joram otero
Log in to reply
How did you arrive at it? I tried Diophantine equation by diffeence of square but made some error in middle. U?
Problem Loading...
Note Loading...
Set Loading...
So we have n 2 − 1 ≡ 0 ( m o d 3 6 0 ) . By factoring 3 6 0 into product of coprime positive integers, we have 3 6 0 = 5 × 8 × 9 .
Thus n 2 ≡ 1 ( m o d 5 ) , n 2 ≡ 1 ( m o d 8 ) , n 2 ≡ 1 ( m o d 9 ) .
By quotient remainder theorem, it's easy to see that for n 2 ≡ 1 ( m o d 5 ) yields n ≡ ± 1 ( m o d 5 ) . Similarly, for the other quadratic congruences, we can obtain n ≡ ± 1 , ± 3 ( m o d 8 ) and n ≡ ± 1 ( m o d 9 ) .
So there's 2 , 4 , 2 possible remainders of n when divided by 5 , 8 , 9 respectively. By Chinese Remainder Theorem and by rule of product, the total number of solutions when k is restricted in the interval [ 0 , 3 6 0 ] is simply 2 × 4 × 2 = 1 6 .