返回题库

AIME 1983 · 第 6 题

AIME 1983 — Problem 6

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

Let an=6n+8na_n=6^{n}+8^{n}. Determine the remainder upon dividing a83a_ {83} by 4949.

解析

Solutions

Solution 1

Firstly, we try to find a relationship between the numbers we're provided with and 4949. We notice that 49=7249=7^2, and both 66 and 88 are greater or less than 77 by 11.

Thus, expressing the numbers in terms of 77, we get a83=(71)83+(7+1)83a_{83} = (7-1)^{83}+(7+1)^{83}.

Applying the Binomial Theorem, half of our terms cancel out and we are left with 2(783+3403781++837)2(7^{83}+3403\cdot7^{81}+\cdots + 83\cdot7). We realize that all of these terms are divisible by 4949 except the final term.

After some quick division, our answer is 035\boxed{035}.

Solution 2

Since ϕ(49)=42\phi(49) = 42 (see Euler's totient function), Euler's Totient Theorem tells us that a421(mod49)a^{42} \equiv 1 \pmod{49} where gcd(a,49)=1\text{gcd}(a,49) = 1. Thus 683+88362(42)1+82(42)16^{83} + 8^{83} \equiv 6^{2(42)-1}+8^{2(42)-1} 61+818+648\equiv 6^{-1} + 8^{-1} \equiv \frac{8+6}{48} 141035(mod49)\equiv \frac{14}{-1}\equiv \boxed{035} \pmod{49}.

  • Alternatively, we could have noted that abab(modϕ(n))(modn)a^b\equiv a^{b\pmod{\phi{(n)}}}\pmod n. This way, we have 683683(mod42)61(mod49)6^{83}\equiv 6^{83\pmod {42}}\equiv 6^{-1}\pmod {49}, and can finish the same way.

Solution 3

683+883=(6+8)(6826818+8816+882)6^{83} + 8^{83} = (6+8)(6^{82}-6^{81}8+\ldots-8^{81}6+8^{82})

Because 7(6+8)7|(6+8), we only consider 6826818+8816+882(mod7)6^{82}-6^{81}8+\ldots-8^{81}6+8^{82} \pmod{7}

6826818+8816+882(1)82(1)81+(1)1+1=836(mod7)6^{82}-6^{81}8+\ldots-8^{81}6+8^{82} \equiv (-1)^{82} - (-1)^{81}+ \ldots - (-1)^1 + 1 = 83 \equiv 6 \pmod{7} 683+883146035(mod49)6^{83} + 8^{83} \equiv 14 \cdot 6 \equiv \boxed{035} \pmod{49}

Solution 4 last resort (bash)

Repeat the steps of taking modulo 4949 after reducing the exponents over and over again until you get a residue of 49,49, namely 35.35. This bashing takes a lot of time but it isn’t too bad. ~peelybonehead

Video Solution by OmegaLearn

https://youtu.be/-H4n-QplQew?t=792

~ pi_is_3.14