Program for solving linear equations
https://blog.etrapez.pl/macierze/rzad-macierzy-w-ukladach-rownan-liniowych-z-parametrem/
http://kitchingroup.cheme.cmu.edu/blog/2013/02/27/Solving-linear-equations/
Program finds Amstrong numbers in given range.
N digit Amstrong number is the number equal sum of N-th power of its digits.
Example: 153 = 1^3 + 5^3 + 3^3
Program checks hyphotesis that for each natural number: - it is palindrom - or x += reversed(x) is palindrom (after some recursion)
Example: 121 is palindrom because reversed is the same number 78 because 78+87=165, 165+561=726, 726+627=1353, 1353+3531=4884 - is palindrom
Program finds prime numbers with Eratostene sieve method.