Tagged Questions
10
votes
1answer
232 views
Binary GCD Algorithm vs. Euclid's Algorithm on modern computers
http://en.wikipedia.org/wiki/Binary_GCD_algorithm
This Wikipedia entry has a very dissatisfying implication: the Binary GCD algorithm was at one time as much as 60% more efficient than the standard ...
8
votes
4answers
177 views
Calculating average of two values, minimizing errors
I am doing some floating point calculations and the results are not as accurate as I want them to be.
This is the algorithm:
...
center = (max_x + min_x) / 2
distance = old_x - center
new_x = ...
6
votes
8answers
585 views
Minimization of f(x,y) where x and y are integers
I was wondering if anyone had any suggestions for minimizing a function, f(x,y), where x and y are integers. I have researched lots of minimization and optimization techniques, like BFGS and others ...
5
votes
3answers
460 views
How to compute exact complexity of an algorithm?
Without resorting to asymptotic notation, is tedious step counting the only way to get the time complexity of an algorithm? And without step count of each line of code can we arrive at a big-O ...
3
votes
4answers
159 views
Determining Floating Point Square Root [closed]
How do I determine the square root of a floating point number? Is the Newton-Raphson method a good way? I have no hardware square root either. I also have no hardware divide (but I have implemented ...
3
votes
7answers
733 views
Most efficient way to find min and max of a sin/cos curve in C#
Background: I have a function in my program that takes a set of points and finds the minimum and maximum on the curve generated by those points. The thing is it is incredibly slow as it uses a while ...
2
votes
8answers
1k views
Algorithm for multidimensional optimization / root-finding / something
I have five values, A, B, C, D and E.
Given the constraint A + B + C + D + E = 1, and five functions F(A), F(B), F(C), F(D), F(E), I need to solve for A through E such that F(A) = F(B) = F(C) = F(D) ...
1
vote
3answers
328 views
polynomial evaluation accuracy, multiplication versus division
let us say I have have polynomial in x, divided by a power of x:
p = (a + x(b + x(c + ..)))/(x**n)
efficiency aside, which would be more accurate computation numerically, the above or using ...
0
votes
1answer
96 views
Fastest algorithm to calculate the Normalized and Engineering Scientific notation of a number
Test case :
35000
-> a normalized scientific notation of the number would be 3.5 * 10E4
-> the engineering notation would be 35 * 10E3
A simple algorithm that does this would keep dividing the ...
0
votes
2answers
495 views
fixed point iteration algorithm
I am asked to write a program to solve this equation ( x^3 + x -1 = 0 ) using fixed point iteration.
What is the algorithm for fixed point iteration?
Is there any fixed point iteration code sample ...
0
votes
2answers
157 views
Convergence of BFGS for convex over-parameterized problems
It is "well-known" that the BFGS optimization algorithm is superlinearly convergent for strictly convex problems, but is there any analysis for problems that are non-strictly convex. For example, ...