Tagged Questions

Mathematical optimization deals with maximizing or minimizing an objective function by choosing values from within an allowed feasible set of possible values. Mathematical optimization is often also referred to as mathematical programming or simply as optimization.

learn more… | top users | synonyms

18
votes
6answers
3k views

Is Big O(logn) log base e?

For binary search tree type of data structures, I see the Big O notation is typically noted as O(logn). With a lowercase 'l' in log, does this imply log base e (n) as described by the natural ...
14
votes
4answers
1k views

3 dimensional bin packing algorithms

I'm faced with a 3 dimensional bin packing problem and am currently conducting some preliminary research as to which algorithms/heuristics are currently yielding the best results. Since the problem is ...
14
votes
10answers
3k views

Why is squaring a number faster than multiplying two random numbers?

Multiplying two binary numbers takes n^2 time, yet squaring a number can be done more efficiently somehow. (with n being the number of bits) How could that be? Or is it not possible? This is ...
11
votes
7answers
1k views

Which algorithm for assigning shifts (discrete optimization problem)

I'm developing an application that optimally assigns shifts to nurses in a hospital. I believe this is a linear programming problem with discrete variables, and therefore probably NP-hard: For each ...
10
votes
1answer
188 views

NMinimize seems to be on crack

Say I have a crazy function, f, defined like so: util[x_, y_, c_] := 0.5*Log[c-x] + 0.5*Log[c-y] cost[x_, y_, l_] := c /. First[NSolve[util[x, y, c+l] == Log[10+l], c]] prof[x_, y_] := ...
10
votes
1answer
269 views

Randomizing balanced experimental designs

I am writing some code to generate balanced experimental designs for market research, specifically for use in conjoint analysis and maximum difference scaling. The first step is to generate a ...
10
votes
9answers
4k views

Best open source Mixed Integer Optimization Solver

I am using CPLEX for solving huge optimization models (more than 100k variables) now I'd like to see if I can find an open source alternative, I solve mixed integer problems (MILP) and CPLEX works ...
9
votes
9answers
626 views

How computer multiplies 2 numbers?

How does a computer perform a multiplication on 2 numbers say 100 * 55. My guess was that the computer did repeated addition to achieve multiplication. Of course this could be the case for integer ...
8
votes
3answers
230 views

Predicting the number of digits of a multiplication

I need to find the number of digits of very large multiplications (about 300 digits each). I was wondering if there is a trick to predict the number of digits that the product will be without actually ...
8
votes
3answers
345 views

Hotel room optimization/sorting algorithm

Is there any well known room optimization/sorting algorithm for hotels ? Problem is to redistribute rooms to maximize occupancy. Let's say I have 10 rooms, start date and end date for every ...
8
votes
5answers
201 views

An algorithm to sort a list of values into n groups so that the sum of each group is as close as possible

Basically I have a number of values that I need to split into n different groups so that the sums of each group are as close as possible to the sums of the others? The list of values isn't terribly ...
7
votes
1answer
184 views

How to improve performance on a function that operates on two arrays in clojure

I have a set of a small number of functions. Two functions perform a mathematical overlay operation (defined on http://docs.gimp.org/en/gimp-concepts-layer-modes.html, but a little down -- just ...
7
votes
3answers
165 views

Solving equations in .NET

I'm trying to solve some simple equations in .NET. I came across Math.NET and evaluate it. The Solver() methods seemed to be what I need but I can't figure out how to use side conditions with this ...
7
votes
2answers
174 views

Limitation of Mathematica optimization module

I have a question regarding Mathematica's global optimization capability. I came across this text related to the NAG toolbox (kind of white paper). Now I tried to solve the test case from the paper. ...
7
votes
3answers
579 views

Need help optimizing solution for Project Euler problem #12

I've been having my fun with Project Euler challenges again and I've noticed that my solution for number 12 is one of my slowest at ~593.275 ms per runthrough. This is second to my solution for number ...
6
votes
2answers
149 views

Mathematica Module Not Returning Value

I am new to Mathematica, and using a Module to perform a procedure, then return a value. However, Mathematica seems to be evaluating and returning symbolic values instead of the numerical value I ...
6
votes
1answer
99 views

optimization function in R that can accept objective, gradient, AND hessian?

I have a complex objective function I am looking to optimize. The optimization problem takes a considerable time to optimize. Fortunately, I do have the gradient and the hessian of the function ...
6
votes
5answers
490 views

Speeding up Math calculations in Java

I have a neural network written in Java which uses a sigmoid transfer function defined as follows: private static double sigmoid(double x) { return 1 / (1 + Math.exp(-x)); } and this is called ...
6
votes
4answers
4k views

mathematical optimization library for Java — free or open source recommendations?

Does anyone know of such a library that performs mathematical optimization (linear programming, convex optimization, or more general types of problems)? I'm looking for something like MATLAB, but with ...
5
votes
2answers
49 views

How do I specify in which direction to round the average of two floats that differ by the LSB of their significand?

I'm working on a Nelder-Mead optimization routine in C that involves taking the average of two floats. In rare (but perfectly reproducible) circumstances, the two floats, say x and y, differ only by ...
5
votes
2answers
92 views

Is ternary search less efficient than this related algorithm?

The ternary search algorithm is a fast algorithm for finding the minimum or maximum of a unimodal function, a function that either increases and then decreases or decreases and then increases. Assume ...
5
votes
3answers
123 views

Genetic algorithm on a knapsack-alike optiproblem

I have a optimzation problem i'm trying to solve using a genetic algorithm. Basically, there is a list of 10 bound real valued variables (-1 <= x <= 1), and I need to maximize some function of ...
5
votes
1answer
197 views

Fast inverse square root on the iPhone

The fast inverse square function used by SGI/3dfx and most notably in Quake is often cited as being faster than the assembly instruction equivalent, however the posts claiming that seem quite dated. I ...
5
votes
1answer
134 views

L1 constrained Regression in C

I need Lasso/L1 constrained Regression Library in C. AFAIK, NAG does not support it. R has a package to do it but I need to do it in C. Any idea?
5
votes
6answers
209 views

Algebraic structure and programming

May anyone give me an example how we can improve our code reusability using algebraic structures like groups, monoids and rings? (or how can i make use of these kind of structures in programming, ...
5
votes
6answers
996 views

Finding the closest integer fraction to a given random real

Given two ranges of positive integers x: [1 ... n] and y: [1 ... m] and random real R from 0 to 1, I need to find the pair of elements (i,j) from x and y such that xi / yj is closest to R. What is ...
5
votes
5answers
454 views

Is this combinatorial optimization problem NP-hard?

I working on a combinatorial optimization problem that I suspect is NP-hard, and a genetic algorithm has been working well with our dataset. We're a research group and plan to publish our results in ...
5
votes
1answer
202 views

Optimization with Mathematica: Use BinCounts in Objective Function

Using Mathematica, I need to optimize a function that is defined in terms of BinCounts; the arguments that I want to maximize over define the bin cutpoints. I think the problem is that Mathematica ...
4
votes
3answers
117 views

Shopping cart minimization algorithm

I have a list of products, which consists of list of shops, which sold it. { 'Book A': [ShopA, ShopB, ShopC], 'Book B': [ShopC, ShopD], 'Movie C': [ShopA, ShopB, ShopD, ShopE], ... } ...
4
votes
2answers
78 views

Minimising a slow, noisy, not well-defined target function

My question is: are there minimisation algorithms, preferably implemented in Python, that can operate on a function that is slow (~1-10s) and is taking data from a live system, that would not take ...
4
votes
3answers
376 views

OpenCV, C++: Distance between two points

SOLVED: We found what we needed for, though we found something else we could use. We were using a function named cvConvexityDefects(); which is a function which locate defects between two convexhull ...
4
votes
2answers
100 views

Algorithm to find the global minimal distance between item pairs

The items a-d is to be paired with items 0-3 in such a way that the total distance between all item pairs are minimized. For example, this matrix could describe the distance between each item in the ...
4
votes
3answers
138 views

Find highest total price by selling items to multiple buyers, limited by user input to how many separate sales can be made

EDIT: Im sorry guys my explantion of the problem wasn't clear! This should be better: User sends ID numbers of articles and the max. number of bundles(packages) API searches for all prices available ...
4
votes
1answer
169 views

A mathematical programming problem

I have an optimization problem as follows. Given an array of positive integers, e.g. (y1 = 2, y2 = 3, y3 = 1, y4 = 4, y5 = 3), I aim to maximize the sum of the values of functions f(x), where f(x) = ...
4
votes
3answers
453 views

Calculate Biggest Rational Fraction Within Some Bounds

I am trying to place currency trades that match an exact rate on a market that only accepts integral bid/offer amounts. I want to make the largest trade possible at a specific rate. This is a toy ...
4
votes
1answer
765 views

Implementation of Particle Swarm Optimization Algorithm in R

I'm checking a simple moving average crossing strategy in R. Instead of running a huge simulation over the 2 dimenional parameter space (length of short term moving average, length of long term moving ...
4
votes
3answers
217 views

Algorithm to optimize # threads used in a calculation

I'm performing an operation, lets call it CalculateSomeData. CalculateSomeData operates in successive "generations", numbered 1..x. The number of generations in the entire run is fixed by the input ...
4
votes
3answers
157 views

optimized grid for rectangular items

I have N rectangular items with an aspect ratio Aitem (X:Y). I have a rectangular display area with an aspect ratio Aview The items should be arranged in a table-like layout (i.e. r rows, c columns). ...
4
votes
2answers
624 views

Linear algebra library for the D programming language

I'm looking for a package to do matrix math with matrices of up to about 100 x 100. I need to, at a minimum, do inverses, multiplication and transposition. I'd prefer a more encapsulated interface ...
3
votes
1answer
172 views

Simulated Binary Crossover (SBX) crossover operator in Scala genetic algorithm (GA) library

I work on a very little research team to create/adapt a Genetic Algorithm library in Scala for distributed computation with Scientific Worklow System, in our case we use the open source OpenMole ...
3
votes
2answers
100 views

Optimizing a large model - tying to exploit parallelism

I have a chunk of code I've been re-writing over the past week or so to get it running as quickly as possible. The code is modeling a diffracted laser beam and its essence is a convolution of a ...
3
votes
1answer
101 views

Finding a maximal square from a finite set of tiles (approximation)

I have a final set of tiles in which every edge can have on of four colors. The task is to find a maximal possible square build from a given set (finite) of this tiles. Tiles can be rotated. I need ...
3
votes
2answers
176 views

Sorting points such that the minimal Euclidean distance between consecutive points would be maximized

Given a set of points in a 3D Cartesian space, I am looking for an algorithm that will sort these points, such that the minimal Euclidean distance between two consecutive points would be maximized. ...
3
votes
1answer
66 views

Gurobi and java and empty solution

I'm using Gurobi with java to solve a ILP problem. I set all and I start the program. But Gurobi doesn't even try to solve my problem and gives my an empty solution all variable set to 0. During the ...
3
votes
4answers
106 views

Iterating over unordered pairs of elements stored in a collection

In C#, I have got a collection of unique elements and I want to efficeiently execute some code for each unordered pair. For instance, if my container holds {a,b,c}, the unordered pairs are (a,b), ...
3
votes
2answers
209 views

NMinimize eats all memory b/c of unnecessary symbolic work

The following code is a naive way to find the least number whose square has n divisors (the minimum should be its log and the x_i the powers in its prime factorization). If I look at the case n=2000 ...
3
votes
6answers
192 views

Random number Absolute 1 or -1

The question is simple. I need one line command like, Math.round((-Math.random() * 2)) ,which in output just shows 1 and -1. I try to figure it out but it seems not a easy task! I can use IF ...
3
votes
6answers
261 views

Integer optimization in Mathematica?

I have an integer programming problem. I have a pipe, 10m long. I want to cut out as many 1.2meter pieces as I can and then cut the rest of the pipe in 100mm pieces. I have to leave 100mm for the ...
3
votes
3answers
279 views

Quadratic programming in Mathematica

I'm looking at quadratic relaxation of maximum independent set problem (p.22 here), and found that FindMaximum fails for every graph I try, unless I give it optimal solution as the starting point. ...
3
votes
3answers
547 views

Binary Integer Program Solver for Java

My problem is in trying to solve a Binary Integer Program through Java. I want to run a series of experiments and an integral component of these experiments is to solve an integer program where the ...

1 2 3 4