Just for fun, what if it is read as AND: that is, bitwise AND?
x/(y&z) & y/(x&z) & z/(x&y) = 4.
If the / becomes integer (flooring) division, there are many solutions, such as (6, 13, 19).
But if the division results are required to actually be integers, there are no small solutions - at least, none where x, y, and z <= 10000 (checked by brute force with minor optimization). I suspect that unlike the original problem, there are actually no solutions, but it’s just a guess. Anyone want to come up with a proof? :)
It might be fun and surprising to come up with seemingly unsolveable problems in math, but it isn't actually that hard. Especially if you come from the angle of computer science. Math does not have common tools I'm aware of to deal with many of those problems.
Bitwise AND is not a linear function, which is a first obstacle.
For bitwise and you have to be solving it in a Galois field (And consider what AND does) which is actually easier than the general solution but points you more accurately at the cryptographic origin of the question.
x/(y&z) & y/(x&z) & z/(x&y) = 4.
If the / becomes integer (flooring) division, there are many solutions, such as (6, 13, 19).
But if the division results are required to actually be integers, there are no small solutions - at least, none where x, y, and z <= 10000 (checked by brute force with minor optimization). I suspect that unlike the original problem, there are actually no solutions, but it’s just a guess. Anyone want to come up with a proof? :)