Proving 10^n Leaves Remainder 1 When Divided by 9

  • Thread starter Thread starter Dollydaggerxo
  • Start date Start date
  • Tags Tags
    Remainder
Dollydaggerxo
Messages
60
Reaction score
0

Homework Statement


Prove that 10^n leaves remainder 1 after dividing by 9.

The Attempt at a Solution



There is an integer K, such that 10^n = 9k + 1

Where do i go from here if I want to do it just directly?
 
Physics news on Phys.org
Do you know modular arithmetic?
10^n \equiv 1^n =1 \pmod 9
Alternatively use the binomial theorem by writing:
(9+1)^n = \sum_{i=0}^n \binom{n}{i} 9^i = 1 + 9\sum_{i=1}^n \binom{n}{i}9^{i-1}
Finally you could use induction by noting that if 10^n = 9k+1, then,
10^{n+1} = 10^n 10 = (9k+1)(9+1) = 9^2k + 9k + 9 + 1
I would call all approaches direct though induction may not qualify depending on your definition.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top