I have tried to solve this equation $2^{-2 ^{2^{-x}}}=2$ using
FindInstance[2^(-2^(2^(-x))) == 2, x, Reals]
The result is
{{x -> Root[{-2 Log[2]^2 + 2^(1 + #1) Log[2]^2 #1 &, 0.64118574450498598449}]}}
then find in value of x^(1/x)
I understand that the result is 1/2 but I can't prove it.
What does the # in the result mean?
Rootin the docs and also see https://mathematica.stackexchange.com/a/126156/4999 – Michael E2 Oct 25 '19 at 01:11-1<x<1:NSolve[{2^(-2)^2^(-x) == 2, -1 < x < 1 }, x, Reals] (*{}*)– Ulrich Neumann Oct 25 '19 at 06:18