edited by
480 views

3 Answers

0 votes
0 votes
Trivial refers to implicit dependency ..so A->A , B->B,C->C are trivial Dependency..

Now for Non-Trivial dependency ...say we have M->N then for every tuple of M if we have same value in N then we can say it as non trivial .

So from the given table we can say...C->A , C->B , B->A , A->B , AC -> B  , BC-> A these are NON-Trivial Dependency as

(Consider the case of C->A) for every Tuple in C we have same value for it Tuple A .
edited by
0 votes
0 votes
The non-trivial dependencies would be:

$A\rightarrow B$

$B\rightarrow A$

$C\rightarrow AB$

$AC\rightarrow B$

$BC\rightarrow A$
edited by

Related questions

0 votes
0 votes
0 answers
2