In natural language, we sometimes say “and”, but actually mean “or”.
For example:
1) “Brasil accepts argentinian and chilean tourists without visa”.
Let’s put parentheses for scoping:
2) “Brasil accepts ((argentinian and chilean) tourists) without visa”.
Literally, this would mean that a tourist can enter Brasil without a visa, if he has both argentinian citizenship and chilean citizenship. But this is not what we mean when we say a sentence like that. We actually mean that the tourist can enter, if he has either of argentinian or chilean citizenship. So, we use “and”, but we actually mean a disjunction. We mean:
3) “Brasil accepts argentinian or chilean tourists without visa”.
This strange behaviour of “and” can be explained by ellipsis together with wrong distribution of connectives (De Morgan’s rules).
This is the original sentence again, with the ellipses shown explicitly within square brackets:
4) “Brasil accepts argentinian [tourists without visa] and [Brasil accepts] chilean tourists without visa”.
Sentence 4 can be formalized as:
4F) (Argent(x) –> Accept(x)) and (Chilean(x) –> Accept(x))
Sentence 2 can be formalized as:
2F) (Argent(x) and Chilean(x)) –> Accept(x)
And here is a formalization of what we actually mean:
3F) (Argent(x) or Chilean(x)) –> Accept(x)
The point is that we want to say 4. But then we realize that it is very redundant, and many things are repeated. This repetition is specially clear in 4F, where the predicate “Accept” appears twice. Logically, we could avoid this by putting the predicate “Accept” in evidence. Any trained and disciplined logician knowing De Morgan’s rules of distribution of classical negation over “and” or “or” and knowing that, classically, “(A –> B) = (not A or B)” holds, would soon figure out that the correct way of putting “Accept” in evidence requires changing the “and” to an “or”, and hence he would get to 3F, and he would say 3 during a conversation. But normal people, on the other hand, just do lazy ellipses and leave the “and” hanging there. They pronounce 1, which literally means 2F, but they actually want to mean 3F. And thus the disjunctive and is born, basically because people are lazy and can’t apply De Morgan’s rules correctly.