mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 13:31:07 +00:00
47dd31f4a1
* Added 5 README files * corrected arithmetic_analysis README * Update audio_filters/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update backtracking/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> * Update bit_manipulation/README.md Co-authored-by: John Law <johnlaw.po@gmail.com> Co-authored-by: John Law <johnlaw.po@gmail.com>
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/>
|