The question is mostly in the title. If I have a numerical value for a ratio $q_1 = x_1/x_2$, how do I compute $q_2 = x_2 / (x_1 + x_2)$?
For example, if $x_1 = 1$ and $x_2 = 8$, we would be given $q_1 = 0.125$ (without explicitly being given $x_1$ and $x_2$), and we would want to find $q_2 =8 / (8+1) = 0.88888...$
How does one generate $q_2$ from $q_1$ without access to $x_1$ and $x_2$?
Inverting both sides gives that $q_2 = 1 / (q_1 + 1)$.
– Jun 04 '14 at 22:02