edited by
466 views
3 votes
3 votes
how decomposition of a->cd  to a->c and a->d remove redundancy in right side?
edited by

1 Answer

0 votes
0 votes
First step is to split right side of FD to single attribute.

Next find closure of complete LHS. No remove the FD and find closure of same LHS using other FD given. If both closure is same, this FD is redundant. Why? Even if we remove it our relation isn't affected.

Continue this for all FD to remove right redundancy.

Related questions

3 votes
3 votes
1 answer
1
vaishali jhalani asked Jan 8, 2017
2,111 views
"If a relational schema is in BCNF then all redundancy based on functional dependency has been removed, although other types of redundancy may still exist"What are these ...
3 votes
3 votes
1 answer
3
aditi19 asked Nov 29, 2018
1,158 views
R(A, B, C, D)FD: B->C, D->Ais the following decomposition in BCNF?R1(B, C), R2(A, D), R3(C, D)