4 8 2 4 1 2 6 3
Find the last two digits of the number 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.
In second last line it should be Answer=36 right ?
(+1) for the solution and QED ;>
Let the number be 4 8 α = 4 8 2 4 β = 4 8 2 4 1 2 γ . We need to find 4 8 α mod 1 0 0 . Let us consider n mod 4 and n mod 2 5 separately.
4 8 α 4 8 α ≡ 0 (mod 4) ≡ 4 8 2 4 β mod ϕ ( 2 5 ) (mod 25) ≡ 4 8 2 4 β mod 2 0 (mod 25) As g cd ( 4 8 , 2 5 ) = 1 , Euler’s theorem applies.
Now consider 2 4 β mod 2 0 .
2 4 β 2 4 β ⟹ 2 4 β ≡ 0 (mod 4) ≡ 2 4 1 2 γ mod ϕ ( 5 ) (mod 5) ≡ 2 4 1 2 γ mod 4 (mod 5) ≡ 2 4 0 (mod 5) ≡ 1 (mod 5) ≡ 9 6 (mod 20) ≡ 1 6 (mod 20) As g cd ( 2 4 , 5 ) = 1 , Euler’s theorem applies. Since 4 × 2 4 = 9 6 ≡ 0 (mod 4) ≡ 1 (mod 5)
⟹ 4 8 α ≡ 4 8 2 4 β mod 2 0 (mod 25) ≡ 4 8 1 6 (mod 25) ≡ ( − 2 ) 1 6 (mod 25) ≡ 2 1 6 (mod 25) ≡ 1 0 2 4 ⋅ 6 4 (mod 25) ≡ − 1 4 (mod 25) ≡ 1 1 (mod 25)
⟹ 4 8 α ≡ 3 2 × 4 8 (mod 100) ≡ 1 5 3 6 (mod 100) ≡ 3 6 (mod 100) Since 1 5 3 6 ≡ 0 (mod 4) ≡ 1 1 (mod 25)
Problem Loading...
Note Loading...
Set Loading...
Let's call The given number as S
Method using the Chinese remainder theorem:
Please refer to this wiki if you're unfamiliar with how to calculate a modulo using the CRT.
Break mod 100 into two parts, two numbers coprime to each other.
1 ) m o d 4
4 8 ≡ 0 m o d 4 , ∴ S ≡ 0 m o d 4
2 ) m o d 2 5
S ≡ ( 2 5 + 2 3 ) 1 2 6 3 ≡ 2 3 1 2 6 3 m o d 2 5
Because 23 and 25 are coprime, we can use Euler's Theorem
2 3 2 0 ≡ 1 m o d 2 5 , ∵ ϕ ( 2 5 ) = 2 0
∴ S ≡ − 2 2 4 1 2 6 3 m o d 2 0 m o d 2 5
Now, 2 4 1 2 6 3 ≡ 4 1 2 6 3 m o d 2 0
Observe that: 4 2 n ≡ 1 6 m o d 2 0
∵ 2 4 1 2 6 3 ≡ 0 m o d 2 , ∴ 2 4 1 2 6 3 ≡ 1 6 m o d 2 0
∴ S ≡ − 2 1 6 ≡ 4 8 ≡ 1 6 4 ≡ 2 5 6 2 ≡ 6 2 ≡ 1 1 m o d 2 5
Now, we apply the CRT.
n 1 = 4 , y 1 = 2 5 , z 1 = 1 , a 1 = 0
n 2 = 2 5 , y 2 = 4 , z 2 = 1 9 , a 2 = 1 1 (As calculated above)
∴ S ≡ Σ i = 1 2 a i y i z i = 0 + 7 6 × 1 1 ≡ 8 3 6 ≡ 3 6 m o d 1 0 0
Answer = 3 6
Q.E.D.