I'm trying to create a collection called History of Christianity. I'm just in the early stages of it and I don't need help building it up. But I'm confused about some unexpected intermediate results:
At an early step, my rule looked like this:
(title:church AND title:history ANDNOT mytag:biog) OR (title:christian AND title:history)
This rule finds only one book (History of the Christian Church by Philip Schaff). Very surprising, and I can't figure out why.
If I just use the first part of that, namely (title:church AND title:history ANDNOT mytag:biog), I get 11 results. So why should adding an OR clause to it eliminate most of those results? OR is generally additive.
Is this a bug, or is it some artifact of the way ANDs and ORs and ANDNOTs can or cannot be combined with parentheses? It's 3AM so it might be that I'm just not thinking clearly.
Another stab at it, factoring title:history out of the expression:
title:history AND title:(church,christian) ANDNOT mytag:biog
Again, this rule gave only one result: Studies in Early Church History by Henry Sell.
Something seems wrong, because when I use just title:history AND title:(church,christian), I get 119 results. I know that only 93 of them have "biog" in the My Tags field. The rule title:history AND title:(church,christian) AND mytag:biog showed me that. So why, when I change that AND to an ANDNOT, do I get only 1 result? By my calculations it should be 26. Am I being stupid, or is something wrong with the functioning of ANDNOT?