Functional Dependency Math Example 4

Follow the full solution, then compare it with the other examples linked below.

Example 4

medium
In a class, is final grade a function of student name?

Solution

  1. 1
    Each student has exactly one final grade.
  2. 2
    Yes โ€” student name โ†’ grade is a functional dependency (assuming unique names).

Answer

Yes (assuming unique names).
Real-world functional dependencies: employee โ†’ salary, ISBN โ†’ book title, student โ†’ GPA. The key property is that knowing the input uniquely determines the output.

About Functional Dependency

A relationship where the value of one quantity (the output or dependent variable) is completely determined by the value of another quantity (the input or independent variable). If yy depends on xx, then knowing xx uniquely determines yy.

Learn more about Functional Dependency โ†’

More Functional Dependency Examples