What is the remainder when 7 8 8 is divided by 1 1 ?
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.
What is the meaning of mod ? Also Can you explain thoroughly how you got the remainder as 9?
It's known that:
7 3 ≡ 2 ( m o d 1 1 )
7 2 ≡ 5 ( m o d 1 1 )
This gives:
7 2 ⋅ 7 3 = 7 5 ≡ 1 0 ≡ − 1 ( m o d 1 1 )
7 8 8 can be written as: ( 7 5 ) 1 7 ⋅ 7 3
Take modulo 11:
( 7 5 ) 1 7 ⋅ 7 3 ≡ ( − 1 ) 1 7 ⋅ 2 ≡ − 2 ≡ 9 ( m o d 1 1 )
Without remembering Fermat's Little Theorem, and without jumping straight to the result with an arbitrary precision calculator, I tried to spot a pattern in:
where a % b represents the remainder of a divided by b.
Turns out that the repeating pattern seems 1, 7, 5, 2, 3, 10, 4, 6, 9, 8 (I didn't verify it mathematically) and then it becomes trivial to extrapolate what 7^88 will be.
You can prove this pattern using the fact that 7 1 0 ≡ 1 ( m o d 1 1 ) so it must cycle.
Notice that g cd ( 7 ; 1 1 ) = 1 , so we may use Euler's Theorem . We also note 7 ⋅ ( − 3 ) ≡ 1 m o d 1 1 : Euler’s Theorem: 7 1 0 ≡ 1 m o d 1 1 ⇒ 7 8 8 ≡ 7 9 0 ⋅ ( − 3 ) 2 ≡ 1 9 ⋅ ( − 3 ) 2 ≡ 9 m o d 1 1
Problem Loading...
Note Loading...
Set Loading...
According to Fermat's Little Theorem , a p − 1 − 1 is always an integer multiple of p , i.e. a p − 1 ≡ 1 ( m o d p ) . By applying Fermat's little theorem, we know that 7 1 0 ≡ 1 ( m o d 1 1 ) . Hence, we have 7 8 8 ≡ ( 7 1 0 ) 8 ⋅ 7 8 ≡ 7 8 ≡ 4 9 4 ≡ 5 4 ≡ 6 2 5 ≡ 9 ( m o d 1 1 ) . Therefore, the remainder of 7 8 8 upon division by 1 1 is 9 .