If I have 3 numbers, how can I find one number that is unique to that combination.
E.g. (4, 3, 5) has a unique number that is not the same as (5, 3, 4).
I tried adding a number to each component (like 1 to x, 2, y, and 3 to z and then multiplying that number, but there were a lot of problems with this).
(a, b, c)->nwhere every unique triple(a, b, c)maps to a uniquen? If a, b, and c are integers, then that will be possible, but it's going to be more of an algorithm than a mathematical function. – Solomon Slow Mar 05 '15 at 05:01