3.3.1.1.1 Implicit AND Operator

The following queries match the same items:

 cat +dog
 cat AND dog

The following queries match the same items:

 cat -dog
 cat AND NOT dog

The following queries match the same items:

 cat +dog -fox
 cat AND dog AND NOT fox