Tagged Questions
Algorithms which solves mathematical problems by means of numerical approximation (as opposed to symbolic computation).
11
votes
9answers
1k views
As Java is to Scala, C++ is to …?
Although C++0x is quite an improvement to C++ (type inference, anonymous functions, and so on), I have to say that Scala seems even better. The thing is that Scala only runs on the JVM, although it ...
11
votes
7answers
1k views
C or Ada for engineering computations?
as an engineer I currently use C to write programs dealing with numerical methods. I like C as it's very fast. I don't want to move to C++ and I have been reading a bit about Ada which has some very ...
11
votes
3answers
6k views
How can I use numpy.correlate to do autocorrelation?
I need to do auto-correlation of a set of numbers, which as I understand it is just the correlation of the set with itself.
I've tried it using numpy's correlate function, but I don't believe the ...
8
votes
9answers
877 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 ...
8
votes
7answers
767 views
Lisp, OCaml or what for Runge Kutta?
Which language would you propose for solving a system with:
first order differential equations
complex variables
N-dimensions
using 4th order Runge Kutta or the like.
Speed matters a lot but ...
7
votes
6answers
897 views
Bounding this program to determine the sum of reciprocal integers not containing zero
Let A denote the set of positive integers whose decimal representation does not contain the digit 0. The sum of the reciprocals of the elements in A is known to be 23.10345.
Ex. ...
6
votes
2answers
316 views
Solving an overdetermined constraint system
I have n real number variables (don't know, don't really care), let's call them X[n].
I also have m >> n relationships between them let's call them R[m], of the form:
X[i] = alpha*X[j], alpha ...
6
votes
5answers
177 views
How do I calculate the “difference” between two sequences of points?
I have two sequences of length n and m. Each is a sequence of points of the form (x,y) and represent curves in an image. I need to find how different (or similar) these sequences are given that fact ...
6
votes
4answers
358 views
Automatic differentiation library in Scheme / Common Lisp / Clojure
I've heard that one of McCarthy's original motivations for inventing Lisp was to write a system for automatic differentiation. Despite this, my Google searches haven't yielded any libraries/macros for ...
6
votes
11answers
318 views
Function approximation
I have a function,
P(x0, x1, ..., xn)
that takes 100 integers as input and gives as output an integer. P is a slow function to evaluate(it can range from 30 seconds to a couple of minutes).
I need ...
5
votes
2answers
148 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
1answer
216 views
Solving a delay differential equation (DDE) system constrained to give nonnegative solutions
In MATLAB, ode45 has a parameter called NonNegative which constrains the solutions to be nonnegative. They even wrote a paper about how this method works and how it's not something as stupid as just ...
5
votes
1answer
247 views
How can this linear solver be linked within Mathematica?
Here is a good linear solver named GotoBLAS. It is available for download and runs on most computing platforms. My question is, is there an easy way to link this solver with the Mathematica kernel, so ...
5
votes
3answers
196 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
441 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
2answers
240 views
What algorithm to use for optimization af a function of N variables?
Given the function y=f(x1,x2,x3,x4,x5,x6), I'm trying to find the values of x1..x6, where the function reaches its maximum. The function is quite well behaved, continuous, with a single peak with the ...
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 ...
5
votes
4answers
1k views
How to do numerical integration with quantum harmonic oscillator wavefunction?
How to do numerical integration (what numerical method, and what tricks to use) for one-dimensional integration over infinite range, where one or more functions in the integrand are 1d quantum ...
4
votes
4answers
114 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 ...
4
votes
2answers
145 views
Newtons Method in Python
I'm writing a program in python that will solve for zeros using newtons method. I finished writing the rough version of it, then realized a couple different things and was wondering if I need to ...
4
votes
3answers
84 views
Finding maxima in a vector using MATLAB
i'm trying to find local maxima of a vector of numbers using MATLAB. The built-in findpeaks function will work for a vector such as:
[0 1 2 3 2 1 1 2 3 2 1 0]
where the peaks (each of the 3's) only ...
4
votes
2answers
202 views
is there a c++ library for ordinary differential equation (ODE) solvers?
More specifically, i'm interested in 8th order Dormand-Prince embedded method, it's based on Runge-Kutta, and stiff equations.
I use Numerical Recipes 3 but i often have trouble compiling their ...
4
votes
4answers
143 views
What's the numerically best way to calculate the average
what's the best way to calculate the average? With this question I want to know which algorithm for calculating the average is the best in a numerical sense. It should have the least rounding errors, ...
4
votes
1answer
426 views
How to Solve Linear programming problem using DotNumerics?
I'm really interested in numerical analysis. I have been using DotNumerics Open Source Application. My linear system is the following:
1 * x + 3 * y <= 150
2 * x + 1 * y <= 100
where x >= ...
4
votes
5answers
471 views
Approximating the square root of sum of two squares on a microcontroller
I'm working on implementing an FFT algorithm in assembly on an 8-bit microcontroller (HCS08) for fun. Once the algorithm is completed, I'll have an array of 8-bit real/imaginary pairs, and I'll want ...
4
votes
2answers
390 views
How to get binary representation of floating-point number in PHP?
Is there any way to get the binary representation of a floating point number in PHP? Something like Java's Double.doubleToRawLongBits().
Given a positive floating point number, I'd like to get the ...
4
votes
5answers
576 views
efficiently determining if a polynomial has a root in the interval [0,T]
I have polynomials of nontrivial degree (4+) and need to robustly and efficiently determine whether or not they have a root in the interval [0,T]. The precise location or number of roots don't concern ...
4
votes
8answers
509 views
The fastest way to save large data to a file
I do some numerical calculation in Java, C# and C++. Some of them save a lot of data (to the text file). What is the fastest way to do it?
C++.
ofstream file;
file.open(plik);
for(int ...
4
votes
1answer
77 views
How should I deal with floating numbers that numbers that can get so small that the become zero
So I just fixed an interesting bug in the following code, but I'm not sure the approach I took it the best:
p = 1
probabilities = [ ... ] # a (possibly) long list of numbers between 0 and 1
for wp in ...
4
votes
3answers
203 views
problem with arithmetic using logarthms to avoid numerical underflow
I have two lists of fractions;
say A = [ 1/212, 5/212, 3/212, ... ]
and B = [ 4/143, 7/143, 2/143, ... ].
If we define A' = a[0] * a[1] * a[2] * ... and B' = b[0] * b[1] * b[2] * ...
I want to ...
4
votes
3answers
549 views
positive semi-definite matrices and numerical stability?
i'm trying to do factor analysis for a co-occurrence matrix(C) , which is computed from the term-document matrix(TD) as follows:
C=TD*TD'
In theory C should be positive semi-definite , but it isn't ...
3
votes
1answer
72 views
Runge-Kutta and Reusing Datapoints
I am trying to implement the fourth order Runge-Kutta method for solving a first order ODE in Python i.e. dy/dx = f(x,y). I understand how the method works, but am trying to write an efficient ...
3
votes
1answer
46 views
printing the function name in fortran 90
I wrote a code that finds the root of a function whose name is provided among the arguments, I think I took it from Numerical Recipes. Something like
double precision function rtsafe(x_init, x1, x2, ...
3
votes
2answers
264 views
How to parallelize integrating in Mathematica 8
Somebody have idea how to use all cores for calculating integration? I need to use parallelize or parallel table but how?
f[r_] := Sum[(((-1)^n*(2*r - 2*n - 7)!!)/(2^n*n!*(r - 2*n - 1)!))*
...
3
votes
3answers
107 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
1answer
314 views
Limiting Number of Decimal Places in GWT?
In pure Java, I would normally have a function like the one below for limiting the number of decimal places to decimalCount for a given number value. However, according to the GWT docs, "GWT does not ...
3
votes
1answer
139 views
Numeric precision for log(1-exp(x))
I'm doing some math with really big numbers (I'm using Python, but this question isn't Python specific). For one value, I have a formula that gives me f(t) = Pr(X < t). I want to use this formula ...
3
votes
2answers
170 views
Full Singular Value Decomposition in R
In most applications (esp. statistical ones) the thin SVD suffices. However, on occasion one needs the full SVD in order to obtain an orthobasis of the null space of a matrix (and its conjugate). It ...
3
votes
6answers
231 views
Need pow(-1,1.2) to be 1
I am using math.h with GCC and GSL. I was wondering how to get this to evaluate?
I was hoping that the pow function would recognize pow(-1,1.2) as ((-1)^6)^(1/5). But it doesn't.
Does anybody know ...
3
votes
3answers
198 views
Finite difference in Haskell, or how to disable potential optimizations
I'd like to implement the following naive (first order) finite differencing function:
finite_difference :: Fractional a => a -> (a -> a) -> a -> a
finite_difference h f x = ((f $ x + ...
3
votes
3answers
701 views
What is a simple way to find real roots of a (cubic) polynomial?
this seems like an obvious question to me, but I couldn't find it anywhere on SO.
I have a cubic polynomial and I need to find real roots of the function. What is THE way of doing this?
I have found ...
3
votes
1answer
337 views
Is this a bug in NSolve in mathematica?
One would expect and hope that if you ask Mathematica to find the roots of a polynomial, it should give the same (approximate) answers whether you do this symbolically, then find numerical ...
3
votes
1answer
71 views
Is there a hyperreal datatype implementation for doing computations in non-standard analysis?
Non-standard mathematical analysis extends the real number line to include "hyperreals" -- infinitesimals and infinite numbers. Is there (specification for an) implementation of a data type to ...
3
votes
2answers
1k views
3
votes
4answers
683 views
Problem with arithmetic using logarithms to avoid numerical underflow (take 2)
I have two lists of fractions;
say A = [ 1/212, 5/212, 3/212, ... ]
and B = [ 4/143, 7/143, 2/143, ... ].
If we define A' = a[0] * a[1] * a[2] * ... and B' = b[0] * b[1] * b[2] * ...
I want to ...
3
votes
2answers
1k views
Implementing tridiagonal matrix algorithm (TDMA) with NumPy
I'm implementing TDMA in Python using NumPy. The tridiagonal matrix is stored in three arrays:
a = array([...])
b = array([...])
c = array([...])
I'd like to calculate alpha-coefficients ...
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.
...
3
votes
4answers
1k views
How to make topographic map from sparse sampling data?
I need to make a topographic map of a terrain for which I have only fairly sparse samples of (x, y, altitude) data. Obviously I can't make a completely accurate map, but I would like one ...
2
votes
4answers
54 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
0answers
115 views
Numerical recipes / Multidimensional root search (using newt) : How to minimize the maximum error
This question is related to the "numerical recipes in C++" book, so it will be reserved to people knowing a little about it as well as about multidimensional optimization.
I am writing a program that ...