- Reflexivity rule:
Example:
Since { fname } ⊆ { fname, lname } then: {fname, lname} → {fname}
|
What this rule says is:
- Augmentation rule:
Example:
Since {DNO} → {Dname} then: {DNO, LName} → {DName, LName}
|
The augmentation rule says the
following:
- It is given that
DNO → DName:
SSN fname lname DNO DName
+-------------+----------+----------+----------+----------+
| 111-11-1111 | John | Smith | 5 | Research |
+-------------+----------+----------+----------+----------+
| 222-22-2222 | Jane | Doe | 4 | Payroll |
+-------------+----------+----------+----------+----------+
| 333-33-3333 | Pete | Pan | 5 | Research |
+-------------+----------+----------+----------+----------+
|
Example:
DNO=5 → DName=Research
We can verify that
the
following is
also true:
{DNO, LName} → {DName, LName}
|
Example:
(DNO=5, LName=Smith) →
(DName=Research, LName=Smith)
SSN fname lname DNO DName
+-------------+----------+----------+----------+----------+
| 111-11-1111 | John | Smith | 5 | Research |
+-------------+----------+----------+----------+----------+
| 222-22-2222 | Jane | Doe | 4 | Payroll |
+-------------+----------+----------+----------+----------+
| 333-33-3333 | Pete | Pan | 5 | Research |
+-------------+----------+----------+----------+----------+
|
I see
(DNO=5, LName=Smith)
in a tuple,
therefore,
I must see
(DName=Research, LName=Smith)
also
(and I do) !!!
|
- Transitivity rule:
-
If
X → Y
and
Y → Z
then:
X → Z
|
Example:
Since:
{SSN} → {DNO} and
{DNO} → {DName}
Then also:
{SSN} → {DName}
|
The transitivity rule says the
following:
If SSN=111-11-1111 in a tuple, then DNO=5 in that tuple:
SSN fname lname DNO DName
+-------------+----------+----------+----------+----------+
| 111-11-1111 | John | Smith | 5 | Research |
+-------------+----------+----------+----------+----------+
| 222-22-2222 | Jane | Doe | 4 | Payroll |
+-------------+----------+----------+----------+----------+
| 333-33-3333 | Pete | Pan | 5 | Research |
+-------------+----------+----------+----------+----------+
Futhermore, when DNO=5 in a tuple, then DName=Research in that tuple:
SSN fname lname DNO DName
+-------------+----------+----------+----------+----------+
| 111-11-1111 | John | Smith | 5 | Research |
+-------------+----------+----------+----------+----------+
| 222-22-2222 | Jane | Doe | 4 | Payroll |
+-------------+----------+----------+----------+----------+
| 333-33-3333 | Pete | Pan | 5 | Research |
+-------------+----------+----------+----------+----------+
Then:
If I see SSN=111-11-1111 in a tuple,
then I must see DName=Research in the tuple:
SSN fname lname DNO DName
+-------------+----------+----------+----------+----------+
| 111-11-1111 | John | Smith | 5 | Research |
+-------------+----------+----------+----------+----------+
| 222-22-2222 | Jane | Doe | 4 | Payroll |
+-------------+----------+----------+----------+----------+
| 333-33-3333 | Pete | Pan | 5 | Research |
+-------------+----------+----------+----------+----------+
|
|