2

Prove that if $ a^n \mid b^n $ then $a\mid b$ (without use of GCD and factorization theorem).

Davide Giraudo
  • 172,925
agustin
  • 793
  • 12
    Welcome. I don't know how you talk at home or with your friends, but here we enjoy a friendlier tone. In particular, some of us don't like being ordered to prove something, when being asked for help. Please phrase your question(s) a bit more politely. Thank you. – Alex B. Feb 20 '13 at 11:59
  • 3
    @AlexB. I'm so sorry about this subject for all visitors. I don't know about relationship in writing in in this site. before this comment, I think the question must be declared without exta subject as frank subject, I will do this in next topic and answer and respect to reader more and more.tnx – agustin Feb 21 '13 at 17:53

2 Answers2

9

Suppose that $x=\frac pq$ where $p$ and $q$ are relatively prime; that is, there are $a$ and $b$ so that $$ ap+bq=1\tag{1} $$ Suppose that there are integers $c_k$ so that $$ x^n+\sum_{k=0}^{n-1}c_kx^k=0\tag{2} $$ Equation $(1)$ says $x=\frac{1-bq}{aq}$, and substituting into $(2)$ yields $$ \begin{align} 0 &=\left(\frac{1-bq}{aq}\right)^n+\sum_{k=0}^{n-1}c_k\left(\frac{1-bq}{aq}\right)^k\\ &=\frac1{(aq)^n} +\sum_{k=0}^{n-1}\binom{n}{k}\frac1{(aq)^k}\left(-\frac ba\right)^{n-k} +\sum_{k=0}^{n-1}c_k\left(\frac{1-bq}{aq}\right)^k\tag{3} \end{align} $$ Multiply $(3)$ by $a^nq^{n-1}$ and move $\frac1q$ to the left side $$ \frac1q =b\sum_{k=0}^{n-1}\binom{n}{k}(-bq)^{n-k-1} -a\sum_{k=0}^{n-1}c_k(1-bq)^k(aq)^{n-k-1}\tag{4} $$ Everything on the right side of $(4)$ is an integer, so $\frac1q$ must also be an integer. Thus, $x=\frac pq$ is also an integer.

Therefore, any rational number $x$ which satisfies $(2)$ with integer $c_k$ must be an integer.


Finish off as awllower does. Let $x=\frac ba$. We are given that $x^n-k=0$ for some integer $k$. The argument above says that $x=\frac ba$ is an integer.

robjohn
  • 345,667
  • Intricate discussion of rational numbers. +1 Well done. – awllower Feb 20 '13 at 17:00
  • why we have for $({\frac{a}{b}})^n: x^n+\sum_{k=0}^{n-1}c_kx^k=0$? – agustin Feb 23 '13 at 19:41
  • @agustin: We are given that $a^n\mid b^n$ which means that $\left(\frac ba\right)^n\in\mathbb{Z}$, or equivalently, there is a $k\in\mathbb{Z}$ so that $$ \left(\frac ba\right)^n-k=0\tag{$\ast$} $$ Letting $x=\frac ba$, we see that $(\ast)$ is in the form of $(2)$, where $x$ is rational. The result above then says that $x=\frac ba$ is an integer. Thus, $a\mid b$. – robjohn Feb 23 '13 at 21:04
  • Simpler: Bezout $\rm\color{#c00}{lead}$ term only. Let $\ x=\frac{p}q,,\ ap!+!qb=1,,$ and $,\ 0,=,x^{n+1}+c_n x^n+,\cdots\qquad$
    $\tag{}$ Note $,(aq)^n \color{#c00}{x^{n+1}}!=x(aqx)^n=x(ap)^n = x(1!-!qb)^n=x(1!-!qk)=\color{#c00}{x!-!pk},,$ for some $,k\in\Bbb Z\qquad$ $\tag{}$ Also $\ (aq)^n (\color{#0a0}{c_n x^n + c_{n-1}x^{n-1}+\cdots), =, m}\in\Bbb Z\ \ $ by $\ \ q^i x^i=(qx)^i=p^i\in\Bbb Z$ $\tag{}$ $,0=,(aq)^n(\color{#c00}{x^{n+1}}+\color{#0a0}{c_n x^n+\cdots}),=,\color{#c00}{x-pk}\color{#0a0}{+m},\Rightarrow, x = pk-m\in \Bbb Z\ \ \ {\bf QED}$ $\tag{}$
    – Bill Dubuque Mar 15 '14 at 02:54
  • The Rational Root Test can be proved without Bezout, e.g. see here for a 2-line proof using Euclid's Lemma. – Bill Dubuque Feb 25 '15 at 23:46
  • Would the downvoter care to comment? – robjohn Feb 26 '15 at 00:05
  • @BillDubuque: of course I was trying to be helpful. I did not want the author of the question to think there was something wrong with their answer, when there was not. I simply would not have left the comment since there was an answer showing an alternate approach. However, if necessary, I would have simply said, "your answer is fine, but I prefer to avoid the use of Bezout because..." You don't need to edit your comment to this answer since I know how you feel about Bezout. :-) – robjohn Feb 26 '15 at 02:36
  • @robjohn Thanks for your insights. It did not occur to me that the author might interpret the comment as meaning something was wrong with the answer. Actually, thanks partly to your efforts, Bezout gets more respect from me these days. But those memories may fade if your Bezouka becomes a museum piece! – Bill Dubuque Feb 26 '15 at 02:58
2

If $a^n|b^n$, then $b^n/a^n=(\frac{b}{a})^n$ is an integer. Since $\frac{b}{a}$ is rational, this implies that $\frac{b}{a}$ is an ordinary integer, by this theorem.
Q.E.D.
notice that the use of the theorem is suggested by @CalvinLin .

awllower
  • 16,536
  • Without any use of GCD nor factorisation theorems. – awllower Feb 20 '13 at 12:01
  • 1
    OK, provided OP is familiar with algebraic integers (and providing you can develop their theory without GCD and factorization). – Gerry Myerson Feb 20 '13 at 12:01
  • 1
    You can just use the rational (integer) root theorem for the second line. – Calvin Lin Feb 20 '13 at 12:24
  • @CalvinLin Thanks for pointing out this! ^^ – awllower Feb 20 '13 at 12:26
  • @awllower It's one of my favorite uses of the integer root theorem, as it demonstrates something more than "finding a root of a polynomial" to high school students. – Calvin Lin Feb 20 '13 at 12:29
  • @CalvinLin But it appears to use the concept of GCD implicitly; even the conclusion stems from the notion of GCD:How can you define the notion of division? By the GCD being equal to one of them? In any case, this looks better now. Thanks again! – awllower Feb 20 '13 at 12:34
  • @awllower I'm not sure the extent of what "without use of GCD} means (or what factorization theorem is). But the proof of integer root theorem just uses Euclid's Lemma (which arguable uses GCD?), and doesn't require to state that $\gcd(b,a)=1$. – Calvin Lin Feb 20 '13 at 12:49
  • It depends upon the explanations of OP. – awllower Feb 20 '13 at 12:51
  • 1
    @CalvinLin This use of the Rational Root Test can be viewed more generally as the fact the GCD domains are integrally closed. More generally these and related proofs (e.g. irrationality of radicals) can be done very elegantly by employing Dedekind's notion of conductor ideals (discussed in some of my prior posts). – Bill Dubuque Mar 13 '14 at 15:04