Each of a, b, and c is a real number that satisfy:
a-b = a*b*c
b-c = a*b*c
c+a = 3*a*b*c
Using only p&p, how fast can you come up with all possible values of a*c
Start with the linear combination -[a-b = a*b*c] + [b-c = a*b*c] + [c+a = 3*a*b*c]
This yields 2*b = 3*a*b*c. Then either b=0 or a*c=2/3.
If b=0 then a=0 and c=0 as well, so a*c=0 is another possibility.
The total set of possible values of a*c is 0 or 2/3.