mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 21:41:08 +00:00
8 lines
264 B
Markdown
8 lines
264 B
Markdown
|
# Boolean Algebra
|
||
|
|
||
|
Boolean algebra is used to do arithmetic with bits of values True (1) or False (0).
|
||
|
There are three basic operations: 'and', 'or' and 'not'.
|
||
|
|
||
|
* <https://en.wikipedia.org/wiki/Boolean_algebra>
|
||
|
* <https://plato.stanford.edu/entries/boolalg-math/>
|