Firstly, my apologies for being a programmer messing in math land.
I was wondering whether the value of a exponentiation is increased more by a increase in the base or exponent (I believe this is a kind of limit?), and how this depends on the concrete values of the base and exponent. I wrote a program that, given a base, calculates the value of the exponent such that a equal increase in either results in the same final value for the exponentiation.
def binary_search(under, over, isOver):
while abs(under-over)>0.00000000001:
#print under, over
middle= (under+over)/2
if isOver(middle):
over= middle
else:
under=middle
return under
base= 2
small=0.000000000000001
for base in range(2,10):
base= float(base)
print binary_search(0.0,100.0, lambda x: (base+small)**x>base**(x+small))
For the bases from 2 to 10, here are the results:
1.87390832634
3.44985378173
6.11740351597
16.0
16.0
16.0
16.0
16.0
Now, obviously, I don't know what I'm doing. I just wanted to know if there's some significance to the convergence to 16 or I'm just doing something horribly wrong (seems likely).