Tagged Questions

8
votes
9answers
964 views

Generating digits of square root of 2

I want generate the digits of square root of two to a very large extent say about 3 million digits. I am aware of Newton-raphson method but I don't have much clue how to implement the same in C or ...
5
votes
2answers
157 views

Is there any quick way to determine first k digits on n^n

I am writing a program where I need to know only the first k (k can be anywhere between 1-5) numbers of another big number which can be represented as n^n where n is a very large number. Currently I ...
5
votes
3answers
215 views

What is the numerical method used in this implementation of IRR?

The ActiveState Recipes site has a function implementing Internal Rate of Return in Python: def irr(cashflows, iterations=100): """The IRR or Internal Rate of Return is the annualized effective ...
5
votes
3answers
461 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 ...
5
votes
4answers
2k views

How to find a binary logarithm very fast? (O(1) at best)

Is there any very fast method to find a binary logarithm of an integer number? For example, given a number x=52656145834278593348959013841835216159447547700274555627155488768 such algorithm must find ...
4
votes
5answers
144 views

Comparing Root-finding (of a function) algorithms in Python

I would like to compare different methods of finding roots of functions in python (like Newton's methods or other simple calc based methods). I don't think I will have too much trouble writing the ...
3
votes
3answers
113 views

Efficient Computation of The Least Fixed Point of A Polynomial

Let P(x) denote the polynomial in question. The least fixed point (LFP) of P is the lowest value of x such that x=P(x). The polynomial has real coefficients. There is no guarantee in general that an ...
3
votes
8answers
4k views

implementing the derivative in C/C++

How is derivative of a f(x) is typically calculated programmatically to ensure maximum accuracy? I am implementing the Newton-Raphson method and it requires taking of the derivative of a function. ...
2
votes
4answers
59 views

Strange numerical error when using Java Sieve of Eratosthenes algorithm with large numbers?

I'm experiencing the strangest problem and have been having a terrible time debugging it. I thought I'd post it here to get any opinions. public static void sieve(int limit) { for (int i = 2; i ...
2
votes
2answers
117 views

Best parallel method for calculating the integral of a 2D function

In some crunching number program, I have a function which can be just 1 or 0 in three dimensions. I do not know in advance the function, but I need to know the total "surface" of the function which is ...
2
votes
1answer
198 views

Variable radius Gaussian blur, approximating the kernel

I'm writing a Gaussian blur with variable radius (standard deviation), i.e. each pixel of the image is convolved using a different kernel. The standard techniques to compute Gaussian blur don't work ...
2
votes
4answers
320 views

incremental way of counting quantiles for large set of data

I need to count the quantiles for a large set of data. Let's assume we can get the data only through some portions (i.e. one row of a large matrix). To count the Q3 quantile one need to get all the ...
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
5answers
638 views

Generating Full Period/Full Cycle Random Numbers or Permutations Similar to LCG but without odd/even

I wish to generate psuedo-random numbers/permutations that 'occupy' a full period or full cycle within a range. Usually an 'Linear Congruential Generator' (LCG) can be used to generate such sequences, ...
0
votes
1answer
115 views

Best parallel method for finding roots of a numerical function

In some number crunching application, I need to find the multiple (undefined number, bigger or equal to zero) real roots of some numerical function in one dimension produced during the simulation and ...
0
votes
1answer
447 views

sample random point in triangle [closed]

Suppose you have an arbitrary triangle with vertices A, B, and C. This paper (section 4.2) says that you can generate a random point, P, uniformly from within triangle ABC by the following convex ...
0
votes
2answers
467 views

Problem with implementing successive approximation algorithm in C++ with Visual Studio 2008

I'm trying to implement an algorithm we did in numerical methods class. I have an identical procedure written in Maple and it works fine. I can't understand why it isn't working in C++. Any help or ...
-3
votes
1answer
66 views

Wave Signal Process (Period) [closed]

What is the best way to detect 1 period in a wave signal? Does somebody have a specific algorithm to do that? And do you know where you found it? I know fft, but I don't know how make it give me ...