This is an alternative math representation for exponentiation.
Off the top of your head:
Multipication is to Division, as Exponentiation is to what?
Children learn addition, subtraction, multiplication, and division in grade school, yet exponentiation and logarithms are left over for precalculus students to fully understand.
Multiplication can be introduced as repeated addition. Exponentiation can be introduced as repeated multiplication.
Yet, exponentiation is considered much more complicated than multiplication.
I feel the reason for this, is a poor representation for exponentiation and logarithms.
It is inconsistent with all the other math operators, and makes it look quite alien to a grade school student.
I feel that consistency with the rest of math operators is extremely important.
Multiplication can be calculated with repeat adding. For example, 7 * 5 or 5 * 7 means you add 7 together 5 times.
Division is the reverse of multiplication, and it can be done with repeat subtraction. For example, 41 / 7 means you start with 41, and keep subtracting it by 7 until the number becomes less than the subtractor. The answer is how many subtractions you did, plus some remainder.
As a reminder, lets divide 41 by 7 with repeated subtraction:
Since 6 is smaller than 7, we stop subtracting.
In total, we needed to subtract 5 times. Hence, 41 / 7 = about 5.
Moving on, we already know repeat multiplication is exponentiation.
Following the pattern, we’d want the reverse of exponentiation to be repeated division.
So for example, I have the number 100, and want to keep dividing it by, say 3, until the number becomes less than my divisor.
Since 1.235.. is smaller than 3, we stop dividing.
In total, we needed to divide 4 times, so 4 with some remainder is our answer.
In our current math system, how do we represent this calculation?
Well, that would be ln(100) / ln(3)
Why does the reverse of exponentiation require us to use three math operations? Convention.
The shorter variant, log3(100), is still unusual compared to all other operations.
3 + 4 is much easier to read than, for example add4(3).
Let’s redefine the reverse of exponentiation as:
x v y = ln(x) / ln(y)
Hence, in our example 100 v 3 = about 4
I will call this operation apower, short for anti-power.
Like all basic math operations, apower has rules that you can use do solve equations:
a v c + b v c = (a * b) v c
a v c - b v c = (a / b) v c
1 / a v b = b v a
a v c / b v c = a v b
If you’d like to see a list of all identites, click here.
Something that I love about this math operation is that it avoids using e
by default, and hence can be taught to gradeschool students without involving calculus.
a v b feels like a normal math operation, unlike logb(a)
Although having a single operation for the reverse of exponentiation, is an excellent step towards consistency, there is one more important step we should do.
Exponentiation is unusual because the order matters.
ab does not equal ba
Now that we have apower, let’s try and analyze what should be the correct order.
Starting with addition and subtraction. What is the solution to this problem?
a + b - b + b - b
Visually, it is easy to see that the b
s cancel out, and we just have a
remaining.
Okay, lets apply the same calculation to multiplication and division..
a * b / b * b / b
Visually, it is easy to see that the b
s cancel out, and we just have a
remaining.
What about exponentiation?
If we want to express the same concept with exponents, as we had with addition and multiplication, we are forced into writing this:
ln(b(ln(ba) / ln(b))) / ln(b)
or:
logb(b(logb(ba)))
Not the easiest to read..
Okay, now let’s convert it to use the new apower operator:
b(ba v b) v b
Although it looks a little cleaner, it still is inconsistent with the addition and multiplication examples.
Biggest difference: Notice how a
is in the middle of the equation, rather than the left side.
The reason why is that the reverse of the equation, reverses the left side of the exponent, rather than the right side, like in addition or multiplication.
So, perhaps the exponent order is wrong?
Let me redefine power as this:
a ^ b = ba
I have reversed the order in which something is placed to a power.
This means: 2 ^ a = a * a
By doing this switch, we finally get a simple answer that is consistent with the addition and multiplication:
a ^ b v b ^ b v b = a
I love how consistent this feels as in addition/subtraction and multiplication/division.
It feels great to be be able to do this:
a ^ b v b = a
a v b ^ b = a
To be clear:
1 ^ 2 ^ 3 v 4 ^ 5 is read as (((1 ^ 2) ^ 3) v 4) ^ 5
You just go left to right. Treat ^ and v the same.
1 + 2 * 3 ^ 5 * 8 v 9 / 4 - 10 is read as 1 + (2 * (3 ^ 5) * (8 v 9) / 4) - 10
Order of operations:
a ^ (b * c) = a ^ b * a ^ c
a ^ (b / c) = a ^ b / a ^ c
(a + b) ^ 2 = a ^ 2 * b ^ 2
(a - b) ^ 2 = a ^ 2 / b ^ 2
a ^ (b ^ c) = (a * b) ^ c
If you’d like to see a list of all identites, click here.
If x ^ y = z then
If x v y = z then
If you’d like to see a list of all identites (including calculus), click here.
The changes proposed here are quite difficult for someone with many years of math experience to accept.
However I feel that this alternative method to understand exponentiation would save newcomers a lot of confusion.
I believe consistency with other math operations is crutial to helping us understand exponentiation better.
It further opens the doors to a better understanding of higher operations after exponentiation: Tetration