If n is a perfect square, and n 2 ≡ k ( m o d 1 0 ) what is the sum of all the possible values of k and the number of values of k
Example: Suppose k has 2 values, 3 and 4 . Then the answer would be 2 + 3 + 4 = 9
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.
given, n is a perfect square.
n = l(mod 10) is nothing but the units digit.
A perfect square can only have 0,1,4,5,6 and 9 as their units digit.
The possible unit digit values of n^2 are 0(0^2), 1(1^2 and 9^2), 6(4^2 and 6^2) and 5(5^2).
So, total number of possibilities of k (n^2=k(mod 10)) is 4.
So answer is 4+0+5+6+1 = 16.
What about 4 and 9??
C O R R E C T ! ! ! !
Log in to reply
i might be rude but you should have also mentioned about distinct digits.
I guess the ans is wrong. Any sqaure number modulo 10 gives remainders 0,1,4,5,6,9 ,Since there are 6 possibilities so the ans must be 31 not 16.
Log in to reply
The problem stated that n is a perfect square, let's say that n = k 2 .
Hence, n 2 = k 4 .
The possible unit digit of k 4 are 0 , 1 , 5 , and 6 .
Therefore, the answer to this problem is 0 + 1 + 5 + 6 + 4 = 1 6 .
Problem Loading...
Note Loading...
Set Loading...
If n is a perfect square, then its unit digit can be 0 , 1 , 4 , 5 , 6 , or 9 .
The units digit of n 2 can therefore be 0 , 1 , 5 or 6 for a total of 4 possibilities.
⇒ 4 + 0 + 1 + 5 + 6 = 1 6 .