in Databases recategorized by
176 views
0 votes
0 votes
Consider a relation R:
\[
\begin{aligned}
& R(U, V, W, X, Y, Z) \\
& F=\left\{
\begin{array}{l}
    U \rightarrow V \\
    U \rightarrow W \\
    WX \rightarrow Y \\
    WX \rightarrow Z \\
    V \rightarrow X
\end{array}
\right.
\end{aligned}
\]
From the above set of functional dependencies, determine which additional functional dependency can be deduced. Which of the following options is correct?
  1. $VW \rightarrow U$
  2. $VW \rightarrow Y$
  3. $VW \rightarrow YZ$
  4. $WX \rightarrow YZ$
in Databases recategorized by
176 views

1 Answer

1 vote
1 vote
$(VW)^+ = (V , W , X ,Y, Z )$

$(WX)^+ = (W , X, Y, Z)$

So options B, C, D are correct.

Related questions