Skip to main content

Questions tagged [algorithm]

1 vote
0 answers
88 views

I recently skimmed over Bellman's first paper on dynamic programming and I was wondering if there was any published instance of a recursive min or max function that solved an optimization problem that ...
GEP's user avatar
  • 1,547
6 votes
2 answers
885 views

It is common knowledge that a sorting algorithm based on comparisons cannot have a worst case complexity better than $O(n \log n)$. This can be demonstrated by a counting argument on the number of ...
Weier's user avatar
  • 517
1 vote
2 answers
200 views

The Fast Fourier Transform (FFT) is an efficient algorithm used in the computation of the discrete Fourier transform. While it's well-known for its applications in signal processing, it has also been ...
GEP's user avatar
  • 1,547
3 votes
1 answer
180 views

The relations ~ and ≍ are frequently used in math and computer science, at least within number theory and analysis of algorithms. What is their origin? Definitions Suppose $g(x)$ is an eventually-...
Charles's user avatar
  • 131
3 votes
0 answers
304 views

Let $a$ and $b$ be two integers not both of which are equal to zero. It is an important and well-known fact that $\text{gcd}(a,b)=ax_{0}+by_{0}$ for some integers $x_{0}$ and $y_{0}$. Even though this ...
José Hdz. Stgo.'s user avatar
1 vote
1 answer
234 views

When the Gregorian calendar was implemented in 1582, one of its adjustments was the lunar correction---to increase the epact by 1 eight times within a span of 2500 years; specifically, seven times ...
DDS's user avatar
  • 277
3 votes
1 answer
181 views

The quicksort algorithm is based on recursively choosing an element to partition the array. In every modern exposition that I've seen, this element is called the "pivot". However, as far as ...
Matt Hancock's user avatar
4 votes
2 answers
813 views

I recently stumbled upon this text about Yao's algorithm for the minimum spanning tree (MST) and I was wondering if there are some preceding algorithms (other than Sollin's algorithm) that were ...
GEP's user avatar
  • 1,547

15 30 50 per page