4
votes
Is there a simple algorithm that can determine if X is prime, and not confuse a mere mortal programmer?
Here's a simple optimization of your method that isn't quite the Sieve of Eratosthenes but is very easy to implement: first try dividing X by 2 and 3, then loop over j=1..sqrt(X)/6, trying to divid …
1
vote
Well explained algorithms for indexing and searching in metric spaces
Especially for geographical data, look at PostGIS first to see if you need to implement anything. If you do, start with the papers liste …
0
votes
Deducing item cost from totals?
For the range in which a price must be, use a Linear Programming solver in your favorite numerical algebra system. You …
12
votes
What would a P=NP proof be like, hypothetically?
There are some meta-results about what a P=NP or P≠NP proof can not …
1
vote
0
votes
Algorithm to Match Time Dependent (1D) Signals
Dynamic Time Warping is an approach you can use if the signals should be matched by speeding up and slowing down t …
