Find the decopmosition of R into R1(A, B, C), R2(B, C,D ) and R3(C, D, E)

The given relation is R (A, B, C, D, E).
The given set of functional dependency F is :
AB -> CD
A -> E
C -> D
D -> E
The closure of the given set is :
AB -> C [ Decomposition rule ]
AB -> D [ Decomposition rule ]
A -> E
C -> D
D -> E
C -> E [ Transitive rule ]
The decomposition of R is done into 2 tables.
For table R1(A, B, C),
The set of functional dependencies F1 is :
AB -> C
For table R2(B, C, D),
The set of functional dependencies F2 is :
C -> D
For table R3 ( C, D, E ),
The set of functional dependencies F3 is :
C -> D
D -> E
C -> E
For checking lossless property :
The common attirbute between R2(B, C, D) and R3 ( C, D, E ) is CD and CD is a superkey in relation R3. When the attributes of R2 and R3 are combined to form a new table R4 ( B, C, D, E), then the common attribute between R1(A, B, C) and R4 ( B, C, D, E), is BC and BC is a superkey in the combined relation R4.
So, the decomposition is a lossless decomposition.
For checking dependency preserving,
Closure of ( F1 U F2 U F3 ) is :
AB -> C
C -> D
D -> E
C -> E
AB -> D [ Transitive rule ]
The closure of the original set of functional dependency F is :
AB -> C [ Decomposition rule ]
AB -> D [ Decomposition rule ]
A -> E
C -> D
D -> E
C -> E [ Transitive rule ]
So, the functional dependency A -> E is not present in the closure of ( F1 U F2 U F3 ) and so this closure is not equal to the closure of F.
The decomposition is not dependency preserving.
Hence, the answer is option b that is lossless and not dependency preserving.
Find the decopmosition of R into R1(A, B, C), R2(B, C,D ) and R3(C, D, E)...
Let R(A,B,C,D,E) be a relation with FDs F = {AB-CD, A-E, C-D, D-E} The decomposition of Rinto R1(A, B, C), R2(B, C, D) and R3(C, D, E) is 2 Points) Select one: Lossless and Dependency Preserving. Lossy and Not Dependency Preserving. Lossless and Not Dependency Preserving. Lossy and Dependency Preserving.
Let R(A,B,C,D,E) be a relation with FDs F = {AB-CD, A-E, C-D, D-E} The decomposition of Rinto R1(A, B, C), R2(B, C, D) and R3(C, D, E) is 2 Points) Select one: Lossless and Dependency Preserving. Lossy and Not Dependency Preserving. Lossless and Not Dependency Preserving. Lossy and Dependency Preserving.
Let R(A,B,C,D,E) be a relation with FDs F = {AB-CD, A-E, C-D, DE} The decomposition of R into R1(A, B, C), R2(B, C, D) and R3(C, D, E) is (2 Points) Select one: Lossy and Dependency Preserving. Lossless and Not Dependency Preserving. Lossy and Not Dependency Preserving. Lossless and Dependency Preserving.
my choices for these are wrong.
10 points QUESTION 3 Given R=(A, B, C) is a schema and F = {2C-A AB) is a set of FDs that hold on R. Which of the following statements is not true? d=(AB. AC) is a decomposition of that is in BCNF. O Ris in 3NF O BC is a candidate key for R Ris in BCN 10 points QUESTION 4 Given R= (A. 3. CD. E) is a schema and F= (A...
Consider the relation schema R(T, E, C, D, Y) and the following set of F of functional dependencies: CY à E E à Y DY à T CT à D The relation R decomposes into R1(C, Y, E), R2(C, T, D). 1. Is this decomposition lossless-join? _________________Blank 1 True False 2. Is this decomposition dependency preserving? ? _____________Blank 2 True False
Suppose that you decompose a schema R (A, B, C, D, E) into two schemas as below: R1 (A, B, C) R2 (C, D, E) Show that this decomposition is not a lossless join decomposition. Hint: Take a suitable Relation, r, for the Schema R and show that r is a lossy join decomposition.
Consider the following relation R= {A, B, C, D, E} and the following set of functional dependencies F={ A → BC CD → E B + D E + A} Give a lossless, dependency-preserving decomposition into 3NF of schema R
Consider the following relation R = {A,B,C,D,E} and the following set of functional dependencies F = { A → BC CD → E B → D E → A} F = { A → BC CD → E B → D E → A} Give a lossless, dependency-preserving decomposition into 3NF of schema R
Please apply the Lossless Join Testing algorithm to see if the decomposition D is a lossless join decomposition. Please provide testing details step by step when you apply the set of functional dependency for testing. Given 1. The universal relation schema Q(CTHRSG), where C = course, T = teacher, H = hour, R = room, S= student, and G = grade. 2. The minimal set of functional dependencies F are assumed: C -> T each course has one...
5c. Consider the relation R(ABCDE) with the set of functional dependencies F={BE→D, DE→A, AD→C, B→E}. Using decomposition, find a lossless, dependency preserving, BCNF set of relations for R, if such exists. Be sure to identify the projections of the functional dependencies onto the resulting relations at each stage of the decomposition.