6

I am looking for a proof of one of the exponent combination laws, namely the sum of powers. Here $x, a, b \in \mathbb R$ and $x > 0$. I thought about induction but since a,b are not only positive integers ($a, b \in \mathbb R$) that would not work out. Any suggestions?

grapher
  • 465
  • 1
    http://math.stackexchange.com/questions/1009996/real-analysis-of-powers – Bumblebee Dec 29 '14 at 11:37
  • @Nilan the question you linked restrict to $a,b \in \mathbb{Q}$. – Najib Idrissi Dec 29 '14 at 12:04
  • off course. I thought it would be a help for solving this OP. But now we have a very nice solution without it due to user2345215. – Bumblebee Dec 29 '14 at 12:08
  • 1
    How is this a duplicate? This is about real powers, the other question was about rational powers. – user2345215 Dec 29 '14 at 13:49
  • Very related (and unanswered): http://math.stackexchange.com/q/937306/23353 (Not a duplicate, because that question asks for a particular method of proof not used here. If I were to mark one as a duplicate, I would mark the other as a dup of this one, since this is more general. But, we need an answer here that satisfies the other OP's requirements before closing the other one.) – apnorton Dec 29 '14 at 15:16

2 Answers2

11

It suffices to prove it for $x=e$ because then $x^ax^b=e^{a\ln x}e^{b\ln x}=e^{(a+b)\ln x}=x^{a+b}$.

$$e^ae^b=\sum_{n=0}^\infty\frac{a^n}{n!}\sum_{n=0}^\infty\frac{b^n}{n!}=\sum_{n=0}^\infty\sum_{k=0}^n\frac{a^k}{k!}\frac{b^{n-k}}{(n-k)!}=\sum_{n=0}^\infty\sum_{k=0}^n\frac1{n!}\binom nk a^kb^{n-k}=\sum_{n=0}^\infty\frac{(a+b)^n}{n!}=e^{a+b}$$ Here we use Cauchy's product formula, the series converge absolutely.

user2345215
  • 16,422
1

I know of no proof simpler than the one already accepted, not to mention that it generalizes to $\mathbb{C}$. However it uses infinite sums and thus might not be available to students beginning an introductory course in Analysis, so I'll include a proof that can be read right after having defined $\mathbb{R}$.


Let $x>0$.

Step 1: Show that for any natural $n>0$, there exists a unique $y>0$ such that $y^n=x$. This can be shown as in the first chapter of Rudin's Principles of Mathematical Analysis or as done in this post.

Step 2: Show that if $p,q,r,s$ are integers with $q,s>0$, and $\frac{p}{q}=\frac{r}{s}$, then $$(x^p)^{1/q}=(x^r)^{1/s}.$$ So that for a rational $p/q$ with $q>0$ we can define $x^{p/q}$ as $(x^p)^{1/q}$.

Step 3: Show that for rationals $a,b$ we have $x^ax^b=x^{a+b}$.

Step 4: For $x>1$, and $a\in \mathbb{R}$, let $x^a$ be the supremum of $\{ x^t:t\leq a\}.$ Show that for reals $a,b$ we have $x^ax^b=x^{a+b}$. Using basic properties of supremums i.e. $\sup(A)\sup(B)=\sup(AB)$ is helpful here.

Step 5: Let $(1/x)^a=1/x^a$ and show the results extends to all positive reals.

Sam
  • 4,734