Let's say we have a set of items with no fixed price, and a set of transactions in which these items are sold alone or in combination. How do I go about assigning a value to each of these items?
Take the following example (made up on the fly):
Basket 1: x = $5
Basket 2: x = $6
Basket 3: x,y = $9
Basket 4: y,z = $4
Basket 5: z = $3
Basket 6: z = $4
What is the value of x, y, and z?