Proving 10^n Leaves Remainder 1 When Divided by 9

  • Thread starter Thread starter Dollydaggerxo
  • Start date Start date
  • Tags Tags
    Remainder
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
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?
[tex]10^n \equiv 1^n =1 \pmod 9[/tex]
Alternatively use the binomial theorem by writing:
[tex](9+1)^n = \sum_{i=0}^n \binom{n}{i} 9^i = 1 + 9\sum_{i=1}^n \binom{n}{i}9^{i-1}[/tex]
Finally you could use induction by noting that if [itex]10^n = 9k+1[/itex], then,
[tex]10^{n+1} = 10^n 10 = (9k+1)(9+1) = 9^2k + 9k + 9 + 1[/tex]
I would call all approaches direct though induction may not qualify depending on your definition.