Advertisement
Guest User

Untitled

a guest
Nov 14th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 2.86 KB | None | 0 0
  1. % --------------------------------------------------------------
  2. % This is all preamble stuff that you don't have to worry about.
  3. % Head down to where it says "Start here"
  4. % --------------------------------------------------------------
  5.  
  6. \documentclass[12pt]{article}
  7.  
  8. \usepackage[margin=1in]{geometry}
  9. \usepackage{amsmath,amsthm,amssymb}
  10. \usepackage{ dsfont }
  11.  
  12. \newcommand{\N}{\mathbb{N}}
  13. \newcommand{\Z}{\mathbb{Z}}
  14.  
  15. \newenvironment{theorem}[2][Theorem]{\begin{trivlist}
  16. \item[\hskip \labelsep {\bfseries #1}\hskip \labelsep {\bfseries #2.}]}{\end{trivlist}}
  17. \newenvironment{lemma}[2][Lemma]{\begin{trivlist}
  18. \item[\hskip \labelsep {\bfseries #1}\hskip \labelsep {\bfseries #2.}]}{\end{trivlist}}
  19. \newenvironment{question}[2][Question]{\begin{trivlist}
  20. \item[\hskip \labelsep {\bfseries #1}\hskip \labelsep {\bfseries #2.}]}{\end{trivlist}}
  21. \newenvironment{reflection}[2][Reflection]{\begin{trivlist}
  22. \item[\hskip \labelsep {\bfseries #1}\hskip \labelsep {\bfseries #2.}]}{\end{trivlist}}
  23. \newenvironment{proposition}[2][Proposition]{\begin{trivlist}
  24. \item[\hskip \labelsep {\bfseries #1}\hskip \labelsep {\bfseries #2.}]}{\end{trivlist}}
  25. \newenvironment{corollary}[2][Corollary]{\begin{trivlist}
  26. \item[\hskip \labelsep {\bfseries #1}\hskip \labelsep {\bfseries #2.}]}{\end{trivlist}}
  27.  
  28. \begin{document}
  29.  
  30. % --------------------------------------------------------------
  31. %                         Start here
  32. % --------------------------------------------------------------
  33.  
  34. %\renewcommand{\qedsymbol}{\filledbox}
  35.  
  36. \title{Assignment 7}%replace X with the appropriate number
  37. \author{Jennifer Wu\\ %replace with your name
  38. Math 135 - Prof Haykazyan} %if necessary, replace with your course title
  39.  
  40. \maketitle
  41.  
  42. \begin{question}{1}
  43. $\\\\$
  44. Note that because p is prime (so $p > 0$) and k is defined as $0 \leq k < p$, by the Exercise on Page 74, $\binom{p}{k}$ is a non-negative integer. Also note that $\binom{p}{k} = \frac{p!}{(p-k)!k!}$, and as $p$ is prime, it can't be "canceled out" by any factors in the denominator $(p-k)!k!$. So $\frac{p!}{p(p-k)!k!} = \frac{(p-1)!}{(p-k)!k!}$ must be an integer. Thus, we know that $p \mid \frac{p!}{(p-k)!k!}$ and so $p \mid \binom{p}{k}$. From this, since $a \in \mathds{Z}$, $a^k \in \mathds{Z}$, and so we also know $p \mid \binom{p}{k}a^k$.
  45. \\\\
  46. And so, because every element in $\sum_{k=1}^{p-1} \binom{p}{k}a^k$ is divisible by $p$, $\sum_{k=1}^{p-1} \binom{p}{k}a^k \equiv 0 \text{ (mod p)}$. We also know from BT1 that \[\sum_{k=1}^{p-1} \binom{p}{k}a^k = \sum_{k=0}^{p} \binom{p}{k}a^k - 1 - a^p = (1+a)^p - 1 - a^p\] And because we know that $\sum_{k=1}^{p-1} \binom{p}{k}a^k \equiv 0 \text{ (mod p)}$, we also know that $(1+a)^p - 1 - a^p \equiv 0 \text{ (mod p)}$. By CAM, we add $1 + a^p \equiv 1 + a^p$ (mod p) to both side to get \[(1+a)^p \equiv 1 + a^p \text{ (mod p)}\] and we are done.
  47. \end{question}
  48. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement