How to find out the units digit of a certain number (e.g. 3 power 2011). What logic should I use to find the answer to this problem?
|
|
|||||||||
|
|
I'm sure there's a proper mathematical way to solve this, but I would suggest that since you only care about the last digit and since in theory every number multiplied by itself repeatedly should generate a repeating pattern eventually (when looking only at the last digit), you could simply perform the multiplications until you detect the first repetition and then map your exponent into the appropriate position in the pattern that you built. Note that because you only care about the last digit, you can further simplify things by truncating your input number down to its ones-digit before you start building your pattern mapping. This will let you to determine the last digit even for arbitrarily large inputs that would otherwise cause an overflow on the first or second multiplication. Here's a basic example in JavaScript: http://jsfiddle.net/dtyuA/2/ And the last digit in |
|||||||||||||
|
|
You should look at Modular exponentiation. What you want is the same of calculating n^e (mod m) with m = 10. That is the same thing as calculating the remainder of the division by ten of n^e. You are probably interested in the Right-to-left binary method to calculate it, since it's the most time-efficient one and
After that, just call it with modulus = 10 for you desired base and exponent and there's your answer. EDIT: for an even simpler method, less efficient CPU-wise but more memory-wise, check out the Memory-efficient section of the article on Wikipedia. The logic is straightforward enough:
|
||||
|
|
|
For base 3:
That is the units digit has only 4 possibilities and then it repeats in ever the same cycle. With the help of Euler's theorem we can show that this holds for any integer n, meaning their units digit will repeat after at most 4 consecutive exponents. Looking only at the units digit of an arbitrary product is equivalent to taking the remainder of the multiplication modulo 10, for example:
It can also be shown (and is quite intuitive) that for an arbitrary base, the units digit of any power will only depend on the units digit of the base itself - that is 2013^2013 has the same units digit as 3^2013. We can exploit both facts to come up with an extremely fast algorithm (thanks for the help - with kind permission I may present a much faster version). The idea is this: As we know that for any number 0-9 there will be at most 4 different outcomes, we can as well store them in a lookup table:
That's the possible outcomes for 0-9 in that order, grouped in fours. The idea is now for an exponentiation n^a to
Now to make this as efficient as possible, some tweaks are applied to the basic arithmetic operations:
The algorithm in C:
Proof for the initial claims From observing we noticed that the units digit for 3^x repeats every fourth power. The claim was that this holds for any integer. But how is this actually proven? As it turns out that it's quite easy using modular arithmetic. If we are only interested in the units digit, we can perform our calculations modulo 10. It's equivalent to say the units digit cycles after 4 exponents or to say
If this holds, then for example
that is, a^5 yields the same units digit as a^1 and so on. From Euler's theorem we know that
where phi(10) is the numbers between 1 and 10 that are co-prime to 10 (i.e. their gcd is equal to 1). The numbers < 10 co-prime to 10 are 1,3,7 and 9. So phi(10) = 4 and this proves that really The last claim to prove is that for exponentiations where the base is >= 10 it suffices to just look at the base's units digit. Lets say our base is x >= 10, so we can say that x = x_0 + 10*x_1 + 100*x_2 + ... (base 10 representation) Using modular representation it's easy to see that indeed
where a_i are coefficients that include powers of x_0 but finally not relevant since the whole product a_i * (10 * x_i)^y-i will be divisible by 10. |
|||||
|
|
We can start by inspecting the last digit of each result obtained by raising the base 10 digits to successive powers:
We can see that in all cases the last digit cycles through no more than four distinct values. Using this fact, and assuming that
... or even more simply:
The second function is equivalent to the first. Note that even though it uses exponentiation, it never works with a number larger than nine to the fourth power (6561). |
||||
|
The key to solving this type of question lies in Euler's theorem. This theorem allows us to say that a^phi(m) mod m = 1 mod m, if and only if a and m are coprime. That is, a and m do not divide evenly. If this is the case, (and for your example it is), we can solve the problem on paper, without any programming what so ever. Let's solve for the unit digit of 3^2011, as in your example. This is equivalent to 3^2011 mod 10. The first step is to check is 3 and 10 are co-prime. They do not divide evenly, so we can use Euler's theorem. We also need to compute what the totient, or phi value, is for 10. For 10, it is 4. For 100 phi is 40, 1000 is 4000, etc. Using Euler's theorem, we can see that 3^4 mod 10 = 1. We can then re-write the original example as:
Thus, the last digit of 3^2011 is 7. As you saw, this required no programming whatsoever and I solved this example on a piece of scratch paper. |
|||||
|
|
Bellow is a table with the power and the unit digit of 3 to that power. Using this table you can see that the unit digit can be 1, 3, 9, 7 and the sequence repeats in this order for higher powers of 3. Using this logic you can find that the unit digit of (3 power 2011) is 7. You can use the same algorithm for the general case. |
|||
|
|
|
Here's a trick that works for numbers that aren't a multiple of a factor of the base (for base 10, it can't be a multiple of 2 or 5.) Let's use base 3. What you're trying to find is 3^2011 mod 10. Find powers of 3, starting with 3^1, until you find one with the last digit 1. For 3, you get 3^4=81. Write the original power as (3^4)^502*3^3. Using modular arithmetic, (3^4)^502*3^3 is congruent to (has the same last digit as) 1^502*3^3. So 3^2011 and 3^3 have the same last digit, which is 7. Here's some pseudocode to explain it in general. This finds the last digit of b^n in base B.
You'd need to be careful to prevent an infinite loop, if no power of b ends in 1 (in base 10, multiples of 2 or 5 don't work.) |
|||
|
|
|
Find out the repeating set in this case, it is |
||||
|
|
|
You ppl are making simple thing complicated. Suppose u want to find out the unit digit of abc ^ xyz .
|
|||
|
|
