I'm seeking the range of potential values of three ordered real variables that sum to 1.0:
Reduce[{x+y+z == 1,
z > y,
y > x,
x >= 0},
{x,y,z}]
$$0\leq x<\frac{1}{3}\land x<y<\frac{1-x}{2}\land z=-x-y+1$$
[For simplicity, don't worry about cases where the variables are equal.]
This properly reveals that the range of potential values for the smallest variable is $0 \leq x < 1/3$. Fine.
The problem is the range for the other variables, $(y,z)$ are expressed in terms of a particular value of $x$.
The solution I seek is:
$$0 \leq x < \frac{1}{3}$$
$$0 < y < \frac{1}{2}$$
$$1/3 < z < 1$$
Basically, these are the cases where it is possible to find any given variable (for some values of the other two variables)... a subtle difference from the first "solution."
For instance, it is possible to have $1/3 = z$ with the other variables being $x = y = 1/3$. But it is never possible to find a value $z < 1/3$ given these constraints. And so on.
How does one solve for the range of solutions over all other possible values of the other variables, honoring the constraints? (I'm hoping there is a solution that isn't a brute force solution for each variable taken individually as I want to generalize this problem to $n$ variables.)
I've tried Solve and other obvious methods, without success.


