I am trying to understand how to find minimal keys. The assignment provides me with the following task:
Find 3 minimal keys in relation (each key is a set of attributes).
R (a, b, c, d, e)
a -> b
bc -> d
de -> a
The answer is:
(a, c, e)
(b, c, e)
(d, c, e)
I do not understand how to get to the answer. I would appreciate any guidance.