1

$(1)$ Let a and b be positive integers and suppose b is odd. Show that $1 + a^b$ is divisible by $a+1$. $\;\quad( $Suggested method is using the geometric sum formula.)

$(2)$ Let k be a positive integer. Show that if $2^k + 1$ is prime, then $k=2^n$ for some $n \in \mathbb N$.

amWhy
  • 209,954

2 Answers2

1

If $k$ is not a power of two, so $k$ has an odd factor $b$, write $2^k+1=a^b+1$ for suitable $a$.
How does that answer question 2?

Empy2
  • 50,853
1

For your first question:

$ \sum_{k=0}^{b-1} (-a)^k = \frac{1-(-a)^b}{1+a} = \frac{1+a^b}{1+a} $ , since b is odd: $-(-a)^b = -(-1)^b*a^b = 1*a^b =a^b $

=> $(1+a)*[\sum_{k=0}^{b-1} (-a)^k] = 1 + a^b $

Hence $(a+1)|(a^b +1)$

Hint: For the second question, you might want to use the first question..

mvggz
  • 1,965