Prove by mathematical induction that $a^n$ is an irrational number.

1k Views Asked by At

Let $a$ be an irrational number where $a^2$ is a rational number. Prove by mathematical induction or generalized mathematical induction that $a^n$ is an irrational number for all odd integers $n ≥ 1$.

So I know that a (rational) * (irrational) -> (irrational) but I'm not sure how to go about this with induction.

3

There are 3 best solutions below

2
On

If $n$ is odd, then $n+2$ is odd and so $a^{n+2}=a^n a^2$ is irrational, being the product of an irrational and a rational.

If you want to do induction in steps of $1$ instead of $2$, write $n=2k+1$ and use induction on $k$.

2
On

If $n$ is odd, then $$ a^n = \underbrace{a \cdots\cdots a}_{ \large \text{$n$ factors}} = \underbrace{(aa)(aa)(aa) \cdots (aa) a}_{\begin{smallmatrix} \large \text{One left over when} \\[4pt] \large \text{they're paired; that's} \\[4pt] \large \text{what “odd'' means.} \end{smallmatrix}}. $$ Each $aa$ is $a^2$, which you said is rational. So you're multiplying a bunch of rational numbers, getting a rational number, and the one left-over $a$ is irrational.

To make this a proof by mathematical induction, you can say $$ a^\text{next odd number after $n$} = a^{n+2} = a^2 a^n $$ and $a^2$ is rational and the induction hypothesis says $a^n$ is irrational, so you're multiplying a rational number by an irrational number.

0
On

As succinctly as I can put it...

Basis: $a^1 = a$ is irrational.

Induction: Suppose that $a^m$, $m$ odd, is irrational. Then $a^{m+2} = a^m \cdot a^2$ is an irrational number times a rational number, and therefore irrational.