HallsofIvy said:
There is a graph of the function in post 22 of this thread.
It explodes to infinity, of course, but the question is how fast? Is it faster than e^x? (I would think so). Faster than x^x (maybe I would guess so)? Slower than e^(x^2) (again that would be my guess)? Perhaps slower than e^(x^(1+epsilon))?
--
On second thought, I would think O(e^x) < O(int(x^x)) < O(x^x) as x-> infinity.
Now why? I haven't thought through this rigorously, but here's the idea.
For strictly positive monotonic increasing functions that are "slowly growing" like polynomials x, x^2, x^3, and so on, their integral is asymptotically larger than the original function.
O(p(x)) < O(int(p(x))
(eg, O(x) < O(x^2/2))
On the other hand, when when you start to consider functions that grow faster and faster, the growth of the function starts to match the accumulated area under the curve. As you go past the polynomials and get to functions asymptotically equivalent to e^x, this exactly balances and the integral is asymptotically equal to the original function.
O(e^x) = O(int(e^x))
Is this a turning point for how an integral acts on functions asymptotically? After you get to functions that grow faster than e^x, is the growth of the function so great that it outpaces the rate at which area accumulates under the curve? In other words for (monotonic positive increasing) functions BIG(x) that are asymptotically larger than e^x (as x-> infinity), is
O(BIG(x)) > O(int(BIG(x))?
One can imagine a number line of monotonic increasing functions, organized by how fast they grow:
<...ln(x)...x...x^2...x^n...e^x...x^x...e^(x^(1+epsilon))...e^(x^2)...>
The integral can be thought of as a function from this line to itself. For all the stuff less than e^x, the integral maps it larger. Functions asymptotically equivalent to e^x are a fixed point. What of functions greater than e^x? The integral is such a nice operator offhand I would think they would be mapped smaller. Of course to really figure this out a more rigorous thought must be given, considering this as an ordering of equivalence classes and trying to show properties of the integral on it, or things of that nature.