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

1
vote
1answer
35 views

Time efficiency of Power operation?

I was just wondering about power operations and their time efficiency. Since a power operation is effectively: x^n = x*x*x...[n times] Does that mean calculation of x^n takes approximately O(n) ...
1
vote
0answers
53 views

Optimize fill factor by move objects between areas

I have a optimization problem which is about several small rectangles inside one outer rectangle. We have, let say, three outer rectangles which are in following order (similiar to weeks). The inner ...
0
votes
0answers
19 views

Best algorithm for rough set based attribute reduction? [closed]

Which is the best algorithm for rough set based attribute reduction? I tried lot. But couldn't find. Help me.
1
vote
3answers
106 views

Find first root of a black box function, or any negative value of same function

I have a black box function, f(x) and a range of values for x. I need to find the lowest value of x for which f(x) = 0. I know that for the start of the range of x, f(x) > 0, and if I had a value for ...
-4
votes
1answer
50 views

c# fastest way to get a subset of integer list

i get 5 list and i need subset of all. I) 200.000 integer values II) 30.000 integer values III) 10.000 integer values IV) 200 integer values in math terms A n B n C n D. I need to do this ...
3
votes
3answers
112 views

Linear programming library for .NET / C#

I need to solve an under-determined linear system of equations and constraints, then find the particular solution that minimises a cost function. This needs to be done in purely portable managed code ...
0
votes
2answers
125 views

Why a power function is often computed as a logarithm?

I am studying some x86 ASM code and what the code really does, it's my understanding that a power function (x^y) internally works as a logarithm function. By internally I mean the CPU registers. Why ...
-1
votes
2answers
50 views

Matlab: Maximum recursion limit of 500 reached Error

I'm having this problem in Matlab: Maximum recursion limit of 500 reached as one of functions is being called a lot. This is really frustrating. There is a lot about this problem on the web. But I've ...
2
votes
1answer
41 views

Optimizing the layout of a graph with given (erroneous) node-distances

I have a loosely connected graph. For every edge in this graph, I know the approximate distance d(v,w) between node v and w at positions p(v) and p(w) as a vector in R3, not only as an euclidean ...
2
votes
1answer
43 views

Linear constraint with a floor function in Gurobi

I am building an MILP constraint system. Following is the constraint I need to build. floor(a-b) <= 2c - 1 Here, a and b are real-valued. c is integer variable. I need the floor function to be ...
0
votes
2answers
66 views

Find positive solutions to underdetermined linear system of equations

I'm a bit new to matlab so sorry if this is horribly simple. Consider a problem of the following: Find x_1,x_2,x_3 > 0 such that 67.5=60*x_1+90*x_2+120*x_3 and 60=30*x_1+120*x_2+90*x_3 In this ...
0
votes
1answer
47 views

C# Extension Method to Calculate Position Between a Range

I am trying to write an extension method off a 'decimal' that calculates the value of a given number in relation to a given lower and upper range. I know that sounds a bit strange so here is a ...
0
votes
0answers
42 views

Display equation to mathematical format [duplicate]

I'm working on an equation editor, and I’m trying to display equation to mathematical format, but I have no idea. The editor work with a Dictionary. Users complete a textbox like that: ...
1
vote
1answer
54 views

Fsolve with variables from other arrays

I have the following function: function F = F(x,L,Kc1,Kc2,Kc3,Kc4) F=[(2*L*x(1)^2)/Kc1 + L*x(1)*x(2)/Kc3 + x(1)+ (x(1)*Kc4/L)^0.5 - (2*(0.235)); (2*L*(x(2)^2))/Kc2 + x(2)+ L*x(1)*x(2)/Kc3 ...
1
vote
0answers
57 views

implementing a simple big bang big crunch (BB-BC) in matlab

i want to implement a simple BB-BC in MATLAB but there is some problem. here is the code to generate initial population: pop = zeros(N,m); for j = 1:m % formula used to generate random number ...
1
vote
0answers
51 views

AMPL: How to code an equilibrium constraint?

I am trying to code a Maximum Likelihood Estimation problem using AMPL and am unsure as to how to code the constraint EQC. I am unsure if I need just one contraint or a system of them (1 for each ...
2
votes
1answer
78 views

Maximum-perimeter bounding rectangle for a set of points

I've been struggling for quite a while with this seemingly simple problem. I am given a set of points (which I have further simplified down to a convex hull) and my task is to find a rectangle (not ...
2
votes
0answers
73 views

Optimal layout of nodes in small grid where the node output is a function of what nodes it's adjacent to

The generic goal Say we have a "small" 10x10 grid with some fixed nodes @ placed at random positions . . . . . . . . . . . . . . . . . . . . . . . @ . . . . . . . . . @ . . . . . . . . . . . . . ...
0
votes
3answers
82 views

Optmization between nodes having several routes with price and distance as constraints

I'm designing an Android application where I'm trying to find an optimal solution in a situation like this: Suppose we have several different routes between a source and destination, and each route ...
-1
votes
0answers
34 views

Similar behavior on high dimensional data set

I have a high-dimensional (with an aspect of sequence) data set and i want to know if my data set contains a similar behavior in some sequences ? do you have any idea ? thanks beforehand.
-1
votes
0answers
37 views

trie match optimization with learning set [closed]

I need to implement an optimization algorithm for a machine learning application in a trie based distance match function - these are the existing optimization libraries that came up in an online ...
0
votes
1answer
40 views

CPLEX: Any Callbacks called per solution found while polishing?

What callbacks get called during polishing? More specifically, is there a callback that gets called for each new solution found during polishing? I have some (old) code in C++ that uses a ...
1
vote
1answer
61 views

How can I implement an all different constraint in LPSolve?

I have a problem whose solution must contain a unique value in each variable. E.g., 24 fighter pilots must depart in different hours of one day. So the solution must contain the integerse 1:24, in ...
0
votes
2answers
44 views

Ideas for scientific modelling

I was assigned a project in my intro to computer programming class. The goal is to implement a numerical model to some engineering or physics/science problem. The course uses Java. eg. soccer ball ...
0
votes
0answers
38 views

Why are Computational Fluid Dynamics Problems Difficult to Solve in Parallel Processing?

I've heard this in distributed computing circles. I'm no mechanical engineer. Can you tell why this is so? And are there any solutions to this? P.S: can I use the Finite Element method as a solution? ...
1
vote
1answer
79 views

Minimum finding for univariate nonlinear function in Java

I'm looking for a simple way to accomplish in Java what MATLAB's fminsearch() does. I don't need to be as general as fminsearch, in my case I only want to find the minimum (function and parameter ...
1
vote
1answer
38 views

Is there a language that employs a Computer Algebra System for additional features and optimizations?

For example, imagine a function like this: int solveSomeEquation(int y) { y = (int x) * 2; return x; } Using symbolic algebra, the compiler would determine that x = y / 2. Even better, it ...
2
votes
3answers
96 views

Quickly finding the first point at which a function equals 0 using scipy.optimize

Basically, given a function that produces outputs like this for different parameters: I want to quickly find the first x at which the function equals 0. So with parameters that produce the blue ...
3
votes
2answers
89 views

“Frenemies”, or How to Make Teenagers Happy at a Birthday Party

I have a combinatorial optimization problem that I am struggling with. The technical details of the problem are cumbersome, so I have translated things in terms of a fictitious sweet-16 birthday ...
3
votes
1answer
40 views

optim function in R for D-optimality

I have made a function which returns the determinent of (X'X)^-1. I need to use the optim function on the function I created to give me the best values for the X matrix. I am having issues with ...
1
vote
3answers
107 views

How to optimize a matlab function that makes a linear index from a 3D matrix

I have written a small piece of code in MATLAB. This is actually a function to make a linear index from a 3D matrix. This is actually part of a bigger project. the problem is the code works but it is ...
0
votes
1answer
118 views

Why can't I rig SciPy's constrained optimization for integer programming?

I've read that integer programming is either very tricky or not possible with SciPy and that I probably need to use something like zibopt to do it in Python . But I really thought I could do it by ...
-3
votes
1answer
36 views

math logic for distribution

I have a math logic question , Consider 4 values and its sum should always be 10. when you increse or decrease the 1st value , 2nd ,3rd and 4th value should be adjusted automatically ,such that sum ...
0
votes
0answers
32 views

Using fminunc to solve maximum likelihood estimation

I have a maximum likelihood function of a Gaussian Mixture Model that need to be optimized using fminunc. However, I am very new to this problem and not sure how to implement this in Matlab. I need ...
0
votes
1answer
51 views

Max number of particular sequence of elements in 3D array

So for a data structures assignment, I had to initialize each element in a statically allocated 3D array with one of five colors chosen at random. The array was of type ColorEnum, which was declared ...
1
vote
0answers
80 views

Optimization similar to Knapsack [closed]

I am trying to find a way to solve an Optimization problem as follows: I have 22 different objects that can be selected more than once. I have a evaluation function f that takes the multiplicities and ...
0
votes
1answer
73 views

Using mathematical operators in multi variable parameters

I'm wondering if it's possible to include mathematical operators and situations in a multivariable parameter. In my example, I'm looking to have the freedom to enter 'Overdue' 'Less than one day' or ...
1
vote
3answers
137 views

Find maximum value of a function using php

How can I get maximum value of a function in specific range with php. For example I have a function: function f($x){ return pow($x,2); } and i want to get maximum value of this function in ...
5
votes
1answer
87 views

Is this formula repetitive or optimal

I've started to code a image processing program from different image processing algorithms, mostly from René Schulte work, and when benchmarking, I noticed that from all the effects I could find from ...
2
votes
1answer
96 views

Partition an n-dimensional “square” space into cubes

right now I am stuck solving the following "semi"-mathematical Problem. I would like to partition an n-dimensinal restricted space (a hypercube to be precise) D={(x_1, ...,x_n), x_i \in IR and ...
0
votes
1answer
80 views

programming a nonconvex optimization (quadratic maximization) semidefinite programming

just wonder if anyone could help me to solve a problem that goes like this: (with matlab and CVX) cvx_begin sdp variables x0 x1 x2 x3 y1 y2 y3 y4 y5 x0==1/sqrt(3) ...
0
votes
1answer
60 views

Retrieve values of local maxima in R data table - already have column numbers

using this question's solution: Finding local maxima and minima I have been able to retrieve what seems to be a list of column numbers from my data table for local maxima. I also need to retrieve the ...
0
votes
0answers
13 views

Multiple MultiprocessorSchedulingProblems at once

Consider the well-known Number-Partitioning- or "Multiprocessor Scheduling Problem": You want to partition a set $S$ of objects (jobs) $i$ with (integral, positive) weights $w_i$ (process time) into ...
1
vote
4answers
153 views

How to calculate on quick way angle (the closest to one of eight offered values) between point and org(0,0) without math functions(arctan)?

How to calculate on quick way angle (the closest to one of eight offered values) between point and org(0,0) without math functions(arctan) ? I have split xy coordinate system in 8 segments ( 0, 45, ...
11
votes
2answers
328 views

Minimize maximum manhattan distance of a point to a set of points

For 3 points in 2D : P1(x1,y1), P2(x2,y2), P3(x3,y3) I need to find a point P(x,y), such that the maximum of the manhattan distances max(dist(P,P1), dist(P,P2), dist(P,P3)) will ...
1
vote
2answers
103 views

minimizing the sum with a lower bound on the product

I have an optimization problem that I'm currently solving by brute force, but I'm hoping there is a better way. Problem: Given n and d, find prime powers p1^e1, ..., pk^ek (pis are distinct) such ...
3
votes
0answers
110 views

How to set multiple starting values in constrOptim()

I am trying to estimate few parameters using the constained maximum likelihood in R and more specifically the constOptim() from the stata package in R. I am programming in Python and using R via the ...
1
vote
1answer
130 views

How to do nonlinear complex root finding in Python

I want to do a root search for the following nonlinear equations, I do it in Python but it doesn't work. my code is below from pylab import * import scipy import scipy.optimize def z1(x,y): ...
1
vote
0answers
129 views

What is the fastest way to solve small linear programs inside a loop in MATLAB?

I'm running linprog inside a large time loop to solve small (m,n <=3) linear programs but it is my code's bottle neck. I found that using Simplex (Large scale 'off') instead of interior point in ...
0
votes
0answers
104 views

Minimum number of edges - directed graph with given sums of weights

Let's consider a directed graph with positive edge weights. For every vertex we determine the difference D = (sum of weights of edges directed FROM this vertex)-(sum of weights of edges directed INTO ...

1 2 3 4 5 9