Is this not calculus? (2)

f ( x ) = x x x . . . \Large f(x) = x^{x^{x^{.^{.^{.}}}}}

If a = e e a = e^{-e} and b = e 1 / e b = e^{1/e} , let a b f ( x ) d x = A \displaystyle \int_a^b f(x) \ dx = A .

How many times can we iteratively take f ( A ) f(A) before the function fails to converge (not including the time when f f fails to converge)?


Example: f ( A ) 1 time f ( f ( A ) ) 2 times f ( f ( f ( A ) ) ) 3 times f(A) \longrightarrow 1 \ \text{ time}\\ f(f(A)) \longrightarrow 2 \ \text{ times}\\ f(f(f(A))) \longrightarrow 3 \ \text{ times}\\ \vdots

2 2 1 1 4 4 You can do this indefinitely \text{You can do this indefinitely} 3 3

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Akeel Howell
Jan 27, 2018

For the integral, We could use the following method:

a b f ( x ) d x + f ( a ) f ( b ) f 1 ( x ) d x = b f ( b ) a f ( a ) \displaystyle \int_a^b f(x) \ dx + \int_{f(a)}^{f(b)} f^{-1}(x) \ dx = bf(b) - af(a) . For a = e e a = e^{-e} and b = e 1 / e b = e^{1/e} , f ( a ) = 1 e f(a) = \frac{1}{e} and f ( b ) = e f(b) = e .

1 / e e x 1 / x d x 2.65861 ( e 1 / e ) e ( e e ) 1 e 2.65861 1.24413... \displaystyle \int_{1/e}^e x^{1/x} \ dx \approx 2.65861 \ \implies \left( e^{1/e} \right) e - \left( e^{-e} \right) \frac{1}{e} - 2.65861 \approx 1.24413...

OR

we could attempt to approximate the integral (which has an extraordinarily slow rate of convergence!) by taking a Riemann sum with very small step values:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
terms = []
x = 1.4446678610                                         # upper bound for the integral
height = 1300000                                         # height of the power tower (very good approximation)
x_0 = x

while x >= 1:
    for i in range(height):
        x = pow(x_0, x)
    terms.append(x*0.0001)
    x_0 -= 0.0001                                        # lower bound for the integral
    if x_0 < 0.06598803584531:
        break
print(sum(terms)) 

After finding A A , pass it through the following program several times (with a huge "height") to gauge its convergence.

1
2
3
4
5
6
A = float(input("Enter new A: "))
height = 1300000
x_0 = A
for i in range(height):
    A = pow(x_0, A)
print(A)

We see that f ( A ) f(A) comes out to about 1.34007 1.34007 , and f ( f ( A ) ) 1.59505 f(f(A)) \approx 1.59505 . The power tower does not converge for values greater than e 1 / e 1.444678610 e^{1/e} \approx 1.444678610 . Checking f ( f ( f ( A ) ) ) f ( 1.59505 ) f(f(f(A))) \approx f(1.59505) , we receive an error if we use a height that is too large. In fact, a height of 7 7 prints an answer of 4.6687015696911937 e + 30 4.6687015696911937e+30 , a clear indicator that f ( f ( f ( A ) ) ) f(f(f(A))) diverges.

Interestingly, it appears f f crawls (rather slowly) to its convergent values, but explodes to infinity immediately after x x becomes greater than the upper bound of the domain of f f .

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...