Find the smallest positive integer n ≥ 1 0 such that n + 6 is a prime and 9 n + 7 is a perfect square.
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.
Can you please elaborate the 2nd para ???? And could you please give an explanation or a link to explanation of checking residues
Log in to reply
@Jignasa Bhunia Quardatic residues : https://brilliant.org/wiki/quadratic-residues/ . I can elaborate the second paragraph, specifically tell me what you do not understand.
"k=9t+5" is possible, too. So need to check
Log in to reply
I am thankful that you found out an error. I will rectify it.
Since n + 6 is prime, therefore n must be odd. Let n = 2 m + 1 . Then 9 n + 7 = 2 ( 9 m + 8 ) . So m must be even. Let m = 2 p . Then 9 p + 4 must be a perfect square. The smallest possible value of p for this to hold is 5 . But then n + 6 = 2 m + 7 = 4 p + 7 = 2 7 is not a prime . The next possible value of p is 1 3 . For this value of p , n + 6 = 2 m + 7 = 4 p + 7 = 5 9 is prime . Hence the required answer is n = 2 m + 1 = 4 p + 1 = 5 3 .
Focus on 9 n + 7 :
n = 10, not a perfect square
n = 11, not a perfect square
n = 12, not a perfect square
n = 13, not a perfect sqaure
etc. (you will find other perfect squares during this section)
n = 53, a perfect square
Now, when n is a perfect square use n + 6 :
n = 18, not a prime (24)
n = 53, a prime (59)
Therefore, the number of n that satisifes both n + 6 = prime and 9 n + 7 = perfect square is 53
Problem Loading...
Note Loading...
Set Loading...
I did this way :
As 9 n + 7 = k 2 k ∈ Z + , thus k 2 ≡ 7 ( m o d 9 ) . Or by checking residues we can say...
k ≡ 4 ( m o d 9 ) ⟹ k = 9 m + 4 m ∈ Z + . Then 9 n + 7 = ( 9 m + 4 ) 2 ⟹ n = 9 m 2 + 8 m + 1 .
Now n + 6 = 9 m 2 + 8 m + 7 is odd and as well prime . So m must be even , hence for least even integer m = 2 , n + 6 = 5 9 or n = 5 3 .