Simple question, rewriting $e^x$ with $x$ as the base- or more generally, trying to remove $x$ from the exponent. I don't know if it's possible, as I played around with it for a little while and got nothing. If it is, I suspect it has something to do with the Lambert W function. If it's not possible, is there an intuitive reason as to why not or is it just something that can't be done algebraically?
I'm using it to simplify a string of terms into a shorter string of terms with $x$ as the base for each one. It's just convenient if the answer could be given in this polynomial-like form.
Thanks, and sorry if I was a bit vague or missed details.
Edit: It really is what's on the label; $e^x = x^?$- it's meant to be general.
If you're solving for $?$ in the situation above,
$e^x=x^y$
$y=\log_x(e^x)$
$y=x*log_x(e)$
$y=\frac{1}{\log_{e^x}(x)}$
And from there, I don't know how to go about reducing the equation to a single $x$, let alone removing the log and putting it in the form of $x^y$. Any ideas?