If I know the variance of two numbers, is it possible to find their difference?
As in, the only information I have is the variance and that there are only two numbers.
How could I work backwards to find out what the difference between the two numbers is?
Let the two numbers be $a$ and $b$. Then the variance is $$\sigma^2=\frac{(a^2+b^2)-\frac{(a+b)^2}{2}}{2-1}=\frac{(a-b)^2}2$$ so the difference is $$a-b=\sqrt{2\sigma^2}$$