2

Playing around on Desmos with the equation $y=x^x$, I noticed that the function, for numbers $0<x<1$, has two $x$ values for every $y$ value. For instance, $\frac12^{\frac12}=\frac14^{\frac14}$, which we can rewrite as $\sqrt[2]\frac12=\sqrt[4]\frac14$.

What I'm trying to find is: Given some number $a$ such that $0<a<1$, find $b$ such that $\sqrt[a]\frac1a=\sqrt[b]\frac1b$.

Is there a general formula for this? I've tried using Newton's Method, but that just approximates the result; it doesn't give an exact answer.

I'm struggling with tagging this question properly, so I'd appreciate some help with that as well.

DonielF
  • 1,126
  • 1
  • 8
  • 22

2 Answers2

4

Let $t=a/b$ be a positive number other than $1$. Then

$(bt)^{bt}=b^b$

$(bt)^t=b$

$bt=b^{1/t}$

$t=b^{(1-t)/t}$

$\color{blue}{b=t^{t/(1-t)}}$

From this we then get

$\color{blue}{a=bt=t^{1/(1-t)}}$

For instance, if $t=2$ then $b=2^{2/(1-2)}=1/4, a=2^{1/(1-2)}=1/2$.

Oscar Lanzi
  • 39,403
  • 1
    Your final equality holds for all positive $t\ne1$, where you get a divide-by-zero error in the exponent, where for every solution $a,b$ given some $t>1$, there's an equivalent solution $b,a$ for every $0<t<1$. What's really interesting, though, is that your equality holds even for negative $t$, if you avoid picking $t$ such that you end up with an imaginary answer, yielding a negative $a$ and positive $b$ (with the same feature that for every solution $a,b$ for $t<-1$, there's an equivalent solution $b,a$ for every $-1<t<0$). Thank you so much for this; you've given me much to work with here. – DonielF Dec 03 '19 at 03:03
  • Try putting $t=-1$. You get no real solutions, but you do get an elegant result. – Oscar Lanzi Dec 03 '19 at 13:39
  • $a=i, b=\frac1i$? That’s just making my head hurt trying to figure out how to deal with that. :) – DonielF Dec 03 '19 at 14:28
  • $i^i=(-i)^{(-i)}$! – Oscar Lanzi Dec 03 '19 at 19:01
-1

Let $f(x)=x^x$ $$\ln(f(x))=x\ln x$$ $$\frac{f'(x)}{f(x)}=(1+\ln x)$$ $$f'(x)=f(x)\ln(ex)$$ $$\text{For }0<ex<1,f'(x)\lt0$$ $$\text{For }ex>1,f'(x)\gt 0 $$ $$\text{Hence, if }a\in\left(0,\frac1e\right),b>\frac1e$$

DonielF
  • 1,126
  • 1
  • 8
  • 22