# NOT
## Definition(s)
### Context: [[Nexus - Google Analytics Certificate Course|Google Analytics Certificate]]
#### Sub-context: [[Boolean operator]], [[Boolean logic]]
>[! Definition]
>Negate the truth of a Boolean statement.
## Examples
### Single Term
Example of negation on single term `A`
```Boolean
NOT A
```
| Evaluated Term (A) | Statement Result |
| ------------------ | ---------------- |
| T | False |
| F | True |
### Compound statement
Example of Negation on an enclosed AND Operator
```Boolean
NOT (A AND B)
```
| Evaluated Terms (A,B) | Statement Result |
| --------------------- | -------------------- |
| T,T | NOT (True) --> False |
| T, F | NOT (False) --> True |
| F, T | NOT (False) --> True |
| F, F | NOT (False) --> True |
Example of negation on single term (non-enclosed AND)
```Boolean
NOT A AND B
```
| Evaluated Terms (A,B) | Statement Result |
| --------------------- | ---------------- |
| NOT (T) --> F ,T | False |
| NOT (T) --> F, F | False |
| NOT (F) --> T, T | True |
| NOT (F) --> T, F | False |
## Related
## Resources
## Flashcards
The below code are generated for use with [Spaced Repetition plugin](https://github.com/st3v3nmw/obsidian-spaced-repetition/) [docs](https://www.stephenmwangi.com/obsidian-spaced-repetition/)