A functional dependency is a constraint between two sets of attributes in a relation, in relational algebra, databases and type systems.
-5
votes
0answers
23 views
highest level of normalisation [closed]
Consider a relation EMPLOYEE as given below:
EMPLOYEE (empid, empssno, empname, empaddress, empsalary, empage)
and, the following set of functional dependencies:
empid --> empssno, empname, ...
0
votes
1answer
46 views
Understanding Functional Dependencies and equivalent relations
So I am trying to learn and understand Functional Dependencies and it is very hard to find a clear definition online when it comes to equivalent relations. Can someone please give me a definition and ...
2
votes
2answers
45 views
functional dependencies involving the empty set
I am trying to grasp the concept of the empty set with FDs. Say i have
R(A,B,C,D)
A-> E
B-> C
B-> D
where E is the empty set, from what I understand, this is a trivial FD, since you are ...
0
votes
0answers
226 views
Restoration of functional dependencies in MATLAB
I have such table (http://img836.imageshack.us/img836/1418/47709342.png).
And I need to find the dependence of RT(RW, WT, PT). I.e. i must receive the function of three variables. How can i do this ...
1
vote
2answers
96 views
Functional dependencies is DBMS - key
I am reading the book database management systems by Ramakrishnan, and in the chapter related to schema refinement and normal forms, i saw a sentence saying:
K is a candidate key for R means that K ...
0
votes
3answers
39 views
Identifying the keys of a relvar from a set of functional dependencies
Currently enrolled in a database theory class, and was sick during the explanation on functional dependencies. There is no textbook for this course so I've had to make do with Google so far. I've an ...
0
votes
0answers
21 views
Need help figuring out Functional Dependencies
I have a problem where they ask me to get functional dependencies but I'm not entirely sure if I got them correctly, this topic seems a bit confusing, I was wondering if you guys could double check ...
0
votes
1answer
68 views
Normalization of a healthcare database table which tracks the surgeries done
I have a table to track the surgeries in a hospital called Surgery_Record as below.
surgery_Record_ID patient_ID surgery_ID theatre_ID Surgery_Date
1 1 ...
2
votes
1answer
109 views
Haskell: | in a class statement [duplicate]
I'm reading Monad Transformers Step by Step. On page 6, while introducing some subclasses of Monad, the writer gives the following code examples:
class (Monad m) => MonadError e m | m -> e ...
1
vote
1answer
141 views
Learning database normalization, confused about 2NF
I was looking at this video on normalization on youtube and I have to say I am confused now, I there might be errors in the video even though it has 25 likes and only 1 dislike.
Normalization
...
11
votes
4answers
284 views
Static Guarantee on Key/Value Relationships in Data.Map
I want to make a special smart constructor for Data.Map with a certain constraint on the types of key/value pair relationships. This is the constraint I tried to express:
{-# LANGUAGE ...
1
vote
0answers
34 views
A few questions about creating a minimum closure with functional dependencies
So I have the following functional dependencies:
S -> T
V -> SC
SD -> P
SD -> V
Now what I would think to do is separate out the FDs so that there is only one element on the right side ...
0
votes
0answers
74 views
Functional Dependencie Exercise
i have some problems to understand this kind of abstraction about normalization without real examples, someone can give an "easy way" to resolving a question like this:
Let relation ...
2
votes
4answers
170 views
Declaring a type class for multiplication of an N-by-N-element matrix and an N-element column vector
In Haskell, if you have a "family" of types (say, N-by-N-element matrices, for some values of N), and a parallel family of "related" types (say, N-element vectors, for the same values of N), and an ...
0
votes
1answer
293 views
Decomposing a relation into 3NF?
Consider a relation with set functional dependencies F as: R(ABCDE)
F={ AB->CDEF , C->A, D->B, C->D, E->F, B->E }
What will be the decomposition of R into 3NF?
Please help me ...
3
votes
2answers
88 views
Expressing typeclass relations with functional dependencies in Haskell
I want to express that I have 3 related typeclasses.
I have two files. First:
{-# LANGUAGE MultiParamTypeClasses, FunctionalDependencies #-}
module ModA where
class Class a b c | a -> b, b -> ...
3
votes
1answer
158 views
Reflexivity axiom for inferring functional dependencies
As you know, there are three Armstrong's Axioms for inferring all the functional dependencies on a relational database. (X, Y and Z are set of attributes)
Reflexivity: If X ⊆ Y, then Y → X
...
0
votes
1answer
82 views
boyce codd and finding candiate keys
needing desperate help with understanding boyce codd and finding the candidate keys.
i found a link here http://djitz.com/neu-mscs/how-to-find-candidate-keys/ which i have understood for most part but ...
1
vote
1answer
150 views
Identifying the Boyce Codd Normal Form
I'm trying to get my head around the differences between 3NF and BCNF and I think I'm getting there but it would be great if anyone can help out.
The following is a series of relations in the 3rd ...
0
votes
0answers
161 views
Trivial functional dependencies, basic definition needed
I have been trying to answer a question. Consider a relation schema R = (A1, A2, …, An ), and let x subset R and y subset R. NB by subset I mean the symbol of a sideways U|
Suppose x --> y I ...
1
vote
1answer
83 views
MultiParamTypeClasses, FunctionalDependencies, and calling ambiguous functions
With functional dependencies, I can declare the Foo class:
class Foo a b c | a -> b where
foo1 :: a -> b -> c
foo2 :: a -> c
and when I call foo2, everything works fine. The ...
0
votes
1answer
274 views
Find candidate key from functional dependancy
For a relation {A,B,C,D} with the following functional dependancies -
A -> BCD
B -> C
CD -> A
Using a particular method i found on one of the sites, i am getting the candidate key as ABCD. ...
3
votes
3answers
247 views
How to determine the functional dependencies
I am currently working for a University project and I'm a little bit confused now about the functional dependencies part. For this project I had to create a logical data model based on my own project ...
0
votes
1answer
182 views
Decomposing into BCNF
Suppose R = {A,B,C,D}
And FD = C→D,C→A,B→C
I am supposed to find:
1. the key(s)
2. the NF it is in
3. the BCNF (if possible and if not in already)
So here's what I've got so far:
the key is B ...
10
votes
1answer
214 views
How does haskell resolve overlapping instances?
Please excuse me if I use the wrong terminology, I am much a beginner in haskell type manipulation... I am trying to use overlapping instances with functional dependencies to do some type-level ...
0
votes
1answer
219 views
Minimum cover of set of functional dependency
I was going through the conditions of minimum cover of a set of function dependencies.
Here, it is mentioned that the right hand side can have only single attribute. So {A1A2 → B1B2} is not possible. ...
4
votes
1answer
100 views
Understanding Functional Dependencies
I'm currently learning about functional dependencies and am struggling to get my head around the concept behind them.
Say I have the table:
Customer
...
0
votes
1answer
66 views
Functional Dependency Clarification
I am in the process of creating a database for a final project (elementary school) and was a bit confused if I was getting my functional dependencies correctly.
Here are a few tables:
Here are ...
1
vote
1answer
31 views
Scheme based on functional dependencies
I've been trying to figure this out in my head but i'm really stuck and would appreciate some help. Given the scheme
R(a,b,c,d)
fd1: a->c
fd2: b->d
Would it be accurate to say that the key ...
1
vote
0answers
175 views
Third Normal Form - Decomposition
We covered this in college but we only did half of one example and not entirely sure what was going on. I emailed asking if my lecturer could explain it but haven't gotten a reply so I was hoping ...
0
votes
1answer
165 views
Axioms, Functional Dependencies
I am having issues proving functional dependencies with Armstrong's Axioms. This one i'm struggling with. Let R(A,B,C,D,E) be a relation schema and F = {A→CD, C→E, B→D} 1. Prove: F: AC-> BC
I have ...
1
vote
0answers
92 views
How to know whether I reached a correct Canonical Cover?
I know how to get the canonical cover throgh some steps.
But, how can I make sure that this is the minimal and correct canonical cover?
Here is an Example with my try:
R = {A, B, C, D, E}
F = ...
0
votes
2answers
131 views
Functional dependency
if x->a and y-> b
then
from x->a == xy-->ay [ir2] xy-->a [ir4]
from y->b == xy-->xb [ir2] xy-->b [ir4]
therefore ...
0
votes
1answer
722 views
Canonical Cover for Functional Dependencies
I'm learning, or trying to learn about DBMS and am having all sorts of problems understanding how to compute a canonical cover for this:
A -> BCD
BC -> DE
B -> D
D -> A
I can only ever ...
2
votes
1answer
528 views
Functional dependency - Left hand side with three attributes
Assuming we have the following functional dependencies :
AB -> C
DEG -> H
A -> B
DG -> H
We can see that B can be removed due to the closure of B+, which is (G-(AB ->C) U (A -> C) = ...
1
vote
0answers
81 views
Functional Dependencies Reduction
I am studying for my fundamentals of database exam next week and having have been tripped up by a question that has three fd's on the right hand side.
eg.
A B -> C, D E G -> H, A -> B, D G ...
3
votes
2answers
199 views
functional dependencies vs type families
I'm developing a framework for running experiments with artificial life, and I'm trying to use type families instead of functional dependencies. Type families seems to be the preferred approach among ...
1
vote
2answers
64 views
Confusion regarding setting up functional dependencies
Given this following table definition:
TRUCK (TruckNum, TruckType, TypeDesc, TruckMiles, DatePurchased, TruckSerialNum, BaseCity, BaseState, BaseNum, BaseManagerName, ManagerPhone, BasePhone)
I need ...
0
votes
1answer
292 views
Database - Candidate Keys and FDs
Now the question asks me to find out the Functional Dependencies and Candidate Keys.
I'm slightly confused when I'm figuring out the FDs and Candidate Keys. From my understanding you can find FDs if ...
2
votes
2answers
128 views
Haskell: Why does GHC not infer type in this typeclass with fundeps?
I'm trying to use typeclasses and functional dependencies to get a type function that can transform say, Int to Cont Int in the code below, then use it in another typeclass as shown below.
{-# ...
0
votes
1answer
669 views
Non-trivial functional depencency in the closure of set of functional dependency
enter code hereI am Preparing for my database exam.
I have a question about finding the non-trivial functional dependency for R={A,B,C,D,E,F,G}
with the given set of functional dependencies as:
...
7
votes
1answer
173 views
How Type inference work in presence of Functional Dependencies
Consider the code below :
{-# LANGUAGE MultiParamTypeClasses,FlexibleInstances,FunctionalDependencies,UndecidableInstances,FlexibleContexts #-}
class Foo a c | a -> c
instance Foo Int Float
f ...
2
votes
3answers
165 views
Associated Parameter Restriction using Functional Dependency
The function f below, for a given type 'a', takes a parameter of type 'c'. For different types 'a', 'c' is restricted in different ways. Concretely, when 'a' is any Integral type, 'c' should be ...
0
votes
2answers
952 views
how to determine function dependencies and multivalue dependencies?
i have the following table
Case ( referenceID, startDate, endDate, caseDetail, caseType, caseTypeRate, lawyerName, lawyerContact, clientID, clientName, clientAddress, clientContact, ...
0
votes
1answer
52 views
Functional Dependencies - Finding if F implies
Given the following functional dependencies
F = { A -> BC, CD -> E, B -> D, E -> A }
I cannot wrap my head that F |= E -> BC is false. If you have E, you can go to A, if you have A, you ...
2
votes
2answers
135 views
What is the “coverage condition”?
In the source for the State transformer in mtl, it states
-- ---------------------------------------------------------------------------
-- Instances for other mtl transformers
--
-- All of these ...
0
votes
0answers
156 views
Normalization & functional dependencies
I need help normalizing this database from 1NF to BCNF. I've never done this before and I was wondering if someone could guide me where to start and how is it that I determine the PK.
R= {RegNo, ...
1
vote
1answer
783 views
Minimum Cover for Function Dependencies
Im kinda struggling to understand the concept of minimal cover so i want to know if i got it right, Is it true to say that :
Given a Relation R with attributes A1...An
if G is a minimal cover of ...
0
votes
1answer
77 views
Identify functional dependencies
Relation:
Mobile (Phone number, phone model, owner name, firm name)
Firm name is a firm where owner of the mobile phone works.
Functional dependencies are:
Phone number -> phone model
Phone ...
3
votes
1answer
2k views
Method to find candidate key given FD:s?
I'm practicing taking as input a set of functional dependencies and output candidate key(s). Is there an algorithm and how come in such case there is no web-based implementation where I can input my ...

