I'm learning for my exams in the course databases and have some problems with the functional dependencies.
So I got the functional dependencies:
A->BE, AE->BD, F->CD, CD->BEF, CF->B
After decomposition and left-reduction I get:
A->B, A->E, A->D, F->B, F->C, F->D, CD->B, CD->E, CD->F
So after checking for transitivity's I get as solution:
A-> BDE, F->CD, CD->BEF
But I'm not sure if its right. I did the same steps like in this tutorial here:
http://www.youtube.com/watch?v=lKYz5e7INTg
Thanks for any help!