It is known that, for positive integers, $\text{GCD}(x,y)\cdot\text{LCM}(x,y)=x\cdot y$. I wanted to generalize this to three variables:
$$\text{GCD}(x,y,z)\cdot F(x,y,z)\cdot\text{LCM}(x,y,z)=x\cdot y\cdot z.$$
What function $F$ would make this true? We could use this equation as a definition of $F$; but a better definition comes from prime factorization:
$$x=\prod_{\text{prime }p}p^{v_p(x)}$$
$$\text{GCD}(x,y,z)=\prod_{\text{prime }p}p^{\min(v_p(x),v_p(y),v_p(z))}$$
$$F(x,y,z)=\prod_{\text{prime }p}p^{\text{mid}(v_p(x),v_p(y),v_p(z))}$$
$$\text{LCM}(x,y,z)=\prod_{\text{prime }p}p^{\max(v_p(x),v_p(y),v_p(z))}$$
where, also by definition, $(x',y',z')=(\min(x,y,z),\text{mid}(x,y,z),\max(x,y,z))$ is a permutation of $(x,y,z)$ such that $x'\leq y'\leq z'$. Since $x'+y'+z'=x+y+z$, the triple product equation follows.
It also follows that the three functions have divisibility relations
$$\text{GCD}(x,y,z)|F(x,y,z)|\text{LCM}(x,y,z).$$
Now here's the question: Can $F$ be defined directly in terms of multiplication and divisibility relations, without using prime factorization or the division operation? (In particular, I want something that works when some of $x,y,z$ are $0$.)
The other two functions can be defined by
$$\text{GCD}(x,y,z)=\max\{w\mid w|x,w|y,w|z\}$$
$$\text{LCM}(x,y,z)=\min\{w\mid x|w,y|w,z|w\}$$
(and here $\max$ can mean either $w'\leq w$ or $w'|w$). But from the example
$$x=2^2\cdot3,\;y=3^2\cdot5,\;z=5^2\cdot2,$$
$$F(x,y,z)=2\cdot3\cdot5,$$
we see that $F(x,y,z)$ does not divide and is not divided by any of $x,y,z$.