Find the smallest positive integer K such that 3 2 0 1 8 + K is divisible by 73.
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.
@Hikari Fathan , I think there is a mistake in the problem. The title says divisible by 73, but in the problem you say divisible by K.
Relevant wiki: Euler's Theorem
3 2 0 1 8 ≡ 3 2 0 1 8 m o d ϕ ( 7 3 ) (mod 73) ≡ 3 2 0 1 8 m o d 7 2 (mod 73) ≡ 3 2 ≡ 9 (mod 73) Since g cd ( 3 , 7 3 ) = 1 , Euler’s theorem applies. Euler’s totient function ϕ ( 7 3 ) = 7 2
Therefore, for 3 2 0 1 8 + K to be divisible by 73, the smallest K = 7 3 − 9 = 6 4 .
lets -> 3^2018 + k = 0 (mod 73) (3^72)^28 (3)^2 + k = 0 (mod 73) 1 (3^2) + k = 0 (mod 73) 9 + k = 0 (mod 73)
so the smallest number of k is 64
Problem Loading...
Note Loading...
Set Loading...
Relevant wiki: Fermat's Little Theorem
By Fermat's Little Theorem, if p is prime and a is not divisible by p , a p − 1 ≡ 1 m o d p . Thus, since 7 3 is prime, 3 7 2 ≡ 1 m o d 7 3 . Since 2 0 1 8 ≡ 2 m o d 7 2 , we can conclude that 3 2 0 1 8 ≡ 3 2 m o d 7 3 .
We know know that the remainder when 3 2 0 1 8 is divided by 7 3 is 3 2 = 9 . So the smallest positive value of K is 7 3 − 9 = 6 4 .
As a note, any integer of the form K = 7 3 k + 6 4 will be a solution.