Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add README files 1/7 (#5754)
* Added 5 README files * corrected arithmetic_analysis README * Update audio_filters/README.md Co-authored-by: John Law <[email protected]> * Update backtracking/README.md Co-authored-by: John Law <[email protected]> * Update bit_manipulation/README.md Co-authored-by: John Law <[email protected]> Co-authored-by: John Law <[email protected]>
- Loading branch information
Showing
with
42 additions
and 6 deletions.
- +7 −0 arithmetic_analysis/README.md
- +9 −0 audio_filters/README.md
- +8 −0 backtracking/README.md
- +11 −6 bit_manipulation/README.md
- +7 −0 boolean_algebra/README.md
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,7 @@ | ||
# Arithmetic analysis | ||
|
||
Arithmetic analysis is a branch of mathematics that deals with solving linear equations. | ||
|
||
* <https://en.wikipedia.org/wiki/System_of_linear_equations> | ||
* <https://en.wikipedia.org/wiki/Gaussian_elimination> | ||
* <https://en.wikipedia.org/wiki/Root-finding_algorithms> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,9 @@ | ||
# Audio Filter | ||
|
||
Audio filters work on the frequency of an audio signal to attenuate unwanted frequency and amplify wanted ones. | ||
They are used within anything related to sound, whether it is radio communication or a hi-fi system. | ||
|
||
* <https://www.masteringbox.com/filter-types/> | ||
* <http://ethanwiner.com/filters.html> | ||
* <https://en.wikipedia.org/wiki/Audio_filter> | ||
* <https://en.wikipedia.org/wiki/Electronic_filter> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,8 @@ | ||
# Backtracking | ||
|
||
Backtracking is a way to speed up the search process by removing candidates when they can't be the solution of a problem. | ||
|
||
* <https://en.wikipedia.org/wiki/Backtracking> | ||
* <https://en.wikipedia.org/wiki/Decision_tree_pruning> | ||
* <https://medium.com/@priyankmistry1999/backtracking-sudoku-6e4439e4825c> | ||
* <https://www.geeksforgeeks.org/sudoku-backtracking-7/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,6 +1,11 @@ | ||
# Bit manipulation | ||
|
||
Bit manipulation is the act of manipulating bits to detect errors (hamming code), encrypts and decrypts messages (more on that in the 'ciphers' folder) or just do anything at the lowest level of your computer. | ||
|
||
* <https://en.wikipedia.org/wiki/Bit_manipulation> | ||
* <https://docs.python.org/3/reference/expressions.html#binary-bitwise-operations> | ||
* <https://docs.python.org/3/reference/expressions.html#unary-arithmetic-and-bitwise-operations> | ||
* <https://docs.python.org/3/library/stdtypes.html#bitwise-operations-on-integer-types> | ||
* <https://wiki.python.org/moin/BitManipulation> | ||
* <https://wiki.python.org/moin/BitwiseOperators> | ||
* <https://www.tutorialspoint.com/python3/bitwise_operators_example.htm> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,7 @@ | ||
# 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/> |