Working on a problem related to effect size, I get this relation where
$$ Q = \log(m) \left(m - \frac{1}{m} \right) $$
The domain of $m$ is $]0, \infty[$. For a given Q, whenever I find a $m = m^*$ satisfying the equality, the equality is also satisfied with $m = 1/m^*$. Therefore, I can limit the domain of $m$ to $]1, \infty[$.
Is there a formula that can isolate $m$ so that given a value $Q$ ($Q \in \mathbb{R}^+$), $m$ follows?
I plotted the relation and it is univocal (for a given $Q$, there is a single $m > 1$ that satify the equality). I can do a numerical search for $m$, but a formal relation would be more satisfying.
It might be that the relation can be obtained using an infinite series? If it converges, then using a limited number of terms might provide an adequate solution?
m = 0.9; For[i = 0, i < 10, i++, m = Log[m] (m^2 - 1)/0.4]; mreturns a huge number, whereas a numerical search suggest the solutions 0.643973 and 1.55286. Did I made an error in the code? – Denis Cousineau Jan 30 '22 at 12:28