Consider the set {a, b, c} with binary operators + and × defined as follows
| + | a | b | c |
|---|---|---|---|
| a | b | a | c |
| b | a | b | c |
| c | a | c | b |
| * | a | b | c |
|---|---|---|---|
| a | a | b | c |
| b | b | c | a |
| c | c | c | b |
For example, a + c = c, c + a = a, c ×b = c and b × c = a. Given the following set of equations: (a × x) + (a × y) = c (b × x) + (c × y) = c
The number of solution(s) (i.e., pair(s) (x, y) that satisfy the equations) is
Reveal answer
Fill a bubble to check yourself