2023-11-01 ::
Palaiologos
#mathematics
A brief explanation of Heaviside’s cover-up method for partial fraction decomposition, domain extensions and applications to computer algebra.
2022-09-25 ::
Palaiologos
#mathematics
A review of various ways to approximate the factorial function, Gamma function and Digamma function.
2022-01-10 ::
Palaiologos
#apl
#mathematics
#linear-algebra
A multipurpose mathematical beauty demonstrated in APL.
2022-01-06 ::
Palaiologos
#mathematics
#taylor-series
#calculus
#numerical-methods
#APL
A short explanation behind my implementation of the Taylor Series in APL.
2021-10-25 ::
Palaiologos
#c
#mathematics
An analysis of my code guessing round 6 entry.
2021-10-17 ::
Palaiologos
#APL
#linear algebra
#mathematics
#programming
#algorithms
Given a NxM matrix, one can pick a single element from each row so that the cost of this operation is the smallest. The cost is defined as the sum of every other element left in a row. For each column containing nonzero elements, an element must be picked so that every other element besides the chosen one must originate from different rows. What is the lowest cost for a given matrix?
2021-07-01 ::
Palaiologos
#mathematics
If [ gcd(80, x) > gcd(50, x) ], then year x is leap. But why?
2021-06-17 ::
Palaiologos
#c
#perl
#combinator-calculus
#mathematics
#cs
A writeup on my passion for combinator calculus.
2021-06-17 ::
Palaiologos
#c
#code-golf
#fibonacci
#mathematics
In July of 2020 was working with Ada#0132 on a small, multiprecision fibonacci sequence generator written in C.