Final answer:
The Boolean model is used to answer queries based on the presence or absence of terms in documents. This model allows for logical operations such as AND, OR, and NOT to be applied to the queries. Additionally, the Disjunctive Normal Form (DNF) representation of a query can be obtained by combining conjunctions and disjunctions.
Step-by-step explanation:
Boolean Model
(a) Query: funny AND dog
Answer: In the given collection, the word 'funny' is present in document dl and the word 'dog' is present in document d2. To find the intersection of these two documents, we look for common terms, which in this case is an empty set. Therefore, 'funny AND dog' does not yield any results.
(b) Query: nice OR dog
Answer: The word 'nice' is present in document dl and the word 'dog' is present in documents d2 and d3. To find the union of these documents, we combine the terms, which gives us the set {dl, d2, d3}. Therefore, 'nice OR dog' yields documents dl, d2, and d3.
(c) Query: big AND dog AND NOT funny
Answer: The word 'big' is present in documents dl and d4, the word 'dog' is present in documents d2 and d3, and the word 'funny' is present in document dl. To find the intersection and complement of these documents, we subtract the term 'funny' from the intersection of 'big' and 'dog'. Therefore, 'big AND dog AND NOT funny' yields document d4.
(d) Query: big AND dog AND NOT funny
Answer: To translate the query 'big AND dog AND NOT funny' into Disjunctive Normal Form (DNF), we represent it as a combination of conjunctions (AND) and disjunctions (OR). The DNF form of the query will be: (big AND dog AND NOT funny).