Defining exponentiation on the integers

93 Views Asked by At

If one defines the integers as equivalence classes of pairs of natural numbers, there is a (canonical?) way to define addition and multiplication for the integers based on addition and multiplication for the natural numbers, but I’m not sure if the same may be said for exponentiation.

One could define exponentiation for the integers similar to how it can be defined for the natural numbers, by applying the recursion principle to multiplication, but I’m wondering if there is an approach that “agrees in spirit” with how addition and multiplication on $\mathbf{Z}$ can be defined in terms of those operations in $\mathbf{N}$.

1

There are 1 best solutions below

4
On BEST ANSWER

It follows from the binomia theorem, how exponentiation has to be declared for a pair: $$(a,b)^n=(a-b)^n=\sum(-1)^k \binom{n}{k} a^kb^{n-k}=\sum_{k \; \text{even}}\binom{n}{k} a^kb^{n-k} - \sum_{k \;\text{odd}}\binom{n}{k}a^kb^{n-k}=(\sum_{k \; \text{even}} \binom{n}{k}a^kb^{n-k}, \sum_{k \;\text{odd}}\binom{n}{k}a^kb^{n-k})$$ This is exponentiation for natural number exponents.

For nonnatural exponents exponentiation does not always result in a natural number. But one can define $(a,b)^{(c,d)}$ is the solution $x$ of $$(a,b)^c=x(a,b)^d$$ if one exists.