Sample Example- Try it R = (A, B, C, D, E). We decompose it into R1 = (A, B, C), R2 = (A, D, E). The set of functional dependencies is: A → BC, CD → E, B → D, E → A. Show that this decomposition is a lossless-join decomposition. Consider a schema R(A,B,C,D) and functional dependencies A->B and C->D. Then the decomposition of R into R1(A,B ) and R2(C,D ). Check whether the decomposition is lossless or lossy. Consider a relational schema R with attributes A, B, C, D, E and the set of functional dependencies A → CD, B → CE, E → B. Decomposed relations are R1 = (A, B, E), R2 = (A, C, D). Check whether the decomposition is lossless or lossy.