when 534527 is divided by 1000 the remaimder is equal to
Answers
Answer:
Without being clever, let's brute force our way through.
We want to understand 22014−1(mod1000)22014−1(mod1000). Notice that gcd(3,1000)=1gcd(3,1000)=1, so 33 has a modular inverse (a quick check shows that it's 667667).
Now, how do we find 22014−1(mod1000)22014−1(mod1000)? As gcd(2,1000)=2gcd(2,1000)=2, we should worry about the 22 factor. So we think of 10001000 as 23⋅5323⋅53.
Clearly 22014≡0(mod23)22014≡0(mod23). And as φ(53)=100φ(53)=100, we know that 22014≡214≡9(mod125)22014≡214≡9(mod125). Putting these together, perhaps with the Chinese Remainder Theorem or by quick brute force (there are only 8 things to check, afterall), we see that 22014≡384(mod1000)22014≡384(mod1000).
Thus 22014−1≡383(mod1000)22014−1≡383(mod1000). And thus 22014−13≡667⋅(22014−1)≡667⋅383≡461(mod1000)22014−13≡667⋅(22014−1)≡667⋅383≡461(mod1000).
So the remainder is 461461.
Answer:
The remainder is when the number is divided by .
Step-by-step explanation:
Recall the divisional algorithm theorem,
, where dividend, divisor, quotient and remainder such that either or .
Consider the dividend as follows:
To find: The remainder when is divided by .
Using the divisional algorithm, we have
Here notice that the remainder is .
Again, applying the divisional algorithm to and , we get
Here, the remainder is .
Applying the divisional algorithm one more time to and , we get
Here, the remainder is .
Therefore, the remainder is when the number is divided by .
#SPJ3