How can i design a scheme in 3NF with FD's of the form
a -> t; b -> v; b -> w; {a, b} -> {z, k}; w ->y; w -> m; a ->s;
b ->j; w -> p;
How can i design a scheme in 3NF with FD's of the form
a -> t; b -> v; b -> w; {a, b} -> {z, k}; w ->y; w -> m; a ->s;
b ->j; w -> p;
Relation R(A,B,J,K,M,P,S,T,V,W,Y,Z); (A,B) is the primary key as it determines all other attributes by the rules of inference.
FDs with partial dependency on primary key are FD1, FD2, FD3, FD7 and FD8. After relation decomposition we have following set of relation which are at least in NF2:
FD5, FD6 and FD9 are transitive dependencies so move them to a separate relation.