Im not sure when decomposition to BCNF loses functional dependencies.
- We have functional dependencies
A_1, A_2, A_3, and let's say thatA_1, A_2can be minimized to some dependencyA_xthen if decomposition holdsA_x, but doesnt holdA_1, A_2, did it "lose functional dependencies"? - We have relation
R = {A, B, C}with dependenciesA -> B, B -> Cnow we decompose it to BCNF by creatingR1 = {A, B}andR2 = {B, C}. If I understand correctly, we didnt "lose functional dependencies". However, if we addedA -> BCto the dependencies then we would have lost it?