0

I think I understand a bit how to compute the minimal cover of a set of functional dependencies.
But there's something I don't understand. Let's say we have these functional dependencies:

H --> ABCD
ABCD --> H  
B --> H
CD --> H

How should I compute the minimal cover of this?
Can I ignore B --> H and CD --> H or should I ignore A?

Thank you very much.

Jk1
  • 11,233
  • 9
  • 54
  • 64

1 Answers1

0

Minimal cover is not necessarily unique. In your example B, CD and H are minimal covers.

Alexander Serebrenik
  • 3,567
  • 2
  • 16
  • 32