> For the complete documentation index, see [llms.txt](https://acristea.gitbook.io/bti-suport-seminar/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://acristea.gitbook.io/bti-suport-seminar/utile/logica-matematica.md).

# Logică matematică

1 = TRUE&#x20;

0 = FALSE

| x | NOT x |
| - | ----- |
| 0 | 1     |
| 1 | 0     |

| x | y | x AND y (\*) |
| - | - | ------------ |
| 0 | 0 | 0            |
| 0 | 1 | 0            |
| 1 | 0 | 0            |
| 1 | 1 | 1            |

| x | y | x OR y (+) |
| - | - | ---------- |
| 0 | 0 | 0          |
| 0 | 1 | 1          |
| 1 | 0 | 1          |
| 1 | 1 | 1          |
