I am working through an example problem in which we are trying to identify which of the following relations is in Third Normal Form (3NF). Here are the relations we are given:>
A simplified expression of 3NF is "A relation is in 3NF if every attribute transitively dependent on a key is a key attribute."1 A key attribute is an attribute that's part of any candidate key.
R3 is one of the simpler ones to analyze with respect to 3NF.
R3(ABCD)
The only candidate key is CD.
So R3 is not in 3NF.
R4 is similar. C is the only candidate key.
So R4 is not in 3NF.
In R1, the candidate keys are AC and AD.
So R1 is in 3NF.