I have a question about determining whether a relation is in 3rd Normal Form based on functional dependencies.
R = {A,B,C,D,E}
A -> B
BC -> E
ED -> A
From this, I determined the candidate keys to be:
{ACD},{BCD},{CDE}
Wikipedia says that a relation is in 3rd Normal Form if, for each functional dependency X->Y, it meets at least one of the following requirements:
1. Y is a subset of X
2. X is a superkey
Y is a subset of K for some key K
My work: A -> B satisfies 3 because of the key {BCD}, BC->E satisfies 3 because of {CDE}, and CD -> A satisfies 3 because of {ACD}.
Is this the correct way of interpreting those rules?