Tagged Questions
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. ...
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
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 ...
2
votes
2answers
185 views
Numerical Integration of area defined by set of coordinates?
Suppose you have a general shape defined by a bunch of coordinate points that form something that looks like a circle, ellipse, or general closed curve - how do you find the area bounded by these ...
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
1answer
93 views
Clarification about Matlab Laplace Equation
I need help understanding the code and how the temperature TN is computed/stored. Specifically, I don't understand the double-loop beginning with while k<= imax. Here's the Matlab program to ...
1
vote
1answer
85 views
Numerical pitfalls without extended precision FPUs
Monniaux's excellent article, "The Pitfalls of Verifying Floating Point Arithmetic", gives examples of unexpected numerical behavior. However, most of the examples depend on extended precision FPUs or ...
0
votes
0answers
19 views
need help understanding Apache Commons Math BracketFinder
I will start off by saying that this feels like it should be easy... but it's not entirely obvious to me. I am trying to use the BrentOptimizer to find local minima and maxima of a function. I have ...
0
votes
1answer
118 views
Numerical integration of a function with values known at a given point set (finite and discrete) over an area bounded by discrete points?
Let D be the area bounded by a series of points {x_i,y_i} (1<=i<=N).(The area need not to be convex and the points are supposed to go along the boundary curve.)
Let f be a function defined on D ...