Questions tagged [optimization]
Optimization is the process of choosing the "best" value among possible values. They are often formulated as questions on the minimization/maximization of functions, with or without constraints.
23,420 questions
1 vote
0 answers
30 views
Find the maximum of the following function $Q(x_1, x_2, ..., x_N)$ subject to some constraints.
Given a set of non-negative real numbers $c_1, c_2, ..., c_N$, and a positive real number $D$ where $D << 1$, find an upper bound of the function: $Q(x_1, x_2, ..., x_N)$ = $\sum_{i=1}^{N}{x_i\,...
0 votes
0 answers
38 views
Modeling of an optimization problem
I am struggling with the modeling of the following optimization problem. \begin{aligned} \min\; z &= \sum_{p\in P}\sum_{s\in S} F_{ps}\,x_{ps} \;+\; \sum_{p\in P}\sum_{c\in C} D_{pc}\,vol_{...
0 votes
0 answers
46 views
dynamic programming without discounting
Let $u:[0,1]^2\to \mathbb{R}$ be a continuous and differentiable function such that $u(x,x)=0$ for any $x\in [0,1]$, and $\partial u(y,x)/\partial y>0$ for any $x\in [0,1]$ and any $y\in [x,1]$. ...
1 vote
0 answers
41 views
Reference Request: Karush-Kuhn-Tucker conditions for convex optimization with generalized inequality constraints.
I'm reading the book Convex optimization by Stephen Boyd . In Section 5.9.2 he states (without proof) the Karush-Kuhn-Tucker conditions for an optimization problem with generalized inequality ...
2 votes
2 answers
140 views
Can I move the Lagrange multiplier to the other side?
Like instead of saying $$\nabla f=\lambda\nabla g$$ can I instead say $$\lambda\nabla f=\nabla g$$ to create an easier system of equations to solve?
-1 votes
0 answers
15 views
Dual Multiplier by Optimizer (Yalmip) [closed]
To implement Benders Decomposition, I am using Yalmip to code my subproblem (SOCP) and to speed up the process, I am using Optimizer to avoid pre-compile for each subproblem. I need to get the dual ...
0 votes
0 answers
27 views
Understanding the convergence of SDP facial reduction algorithms
From what I understand: When semidefinite programs (SDPs) don't obey Slater conditions, it is not guaranteed that interior-point methods (IPMs) converge. It appears that facial reduction (FR) ...
2 votes
0 answers
108 views
How to solve this kind of constraint optimization problem? [closed]
Given distance $S$, time $T>0$ and bounds on the velocity $v_{\min}<v_{\max}$, $$ \begin{array}{ll} \underset{v:[0,T] \to {\Bbb R}}{\text{minimize}} & \displaystyle \int_0^T f(v(t),e(s(t),t))...
0 votes
0 answers
100 views
What is the mathematical definition of rationality in game theory
From Wikipedia https://en.wikipedia.org/wiki/Rationality#In_various_fields Rationality is a core assumption of game theory: it is assumed that each player chooses rationally based on what is most ...
1 vote
0 answers
67 views
Solution to a constrained optimal control problem — is $v(t) = \frac{S}{T}$ optimal? [closed]
Given distance $S$, time $T > 0$ and bounds on the velocity $v_{\min} < v_{\max}$, $$ \begin{array}{ll} \underset{v : [0, T] \to {\Bbb R}}{\text{minimize}} & \displaystyle\int_0^T f (v(t),t) ...
2 votes
2 answers
244 views
Maximum Travelling Salesman Problem on the integer line
I am trying to solve the following problem: Let's say a "frog" is jumping on the numberline starting at $0$, jumps randomly on every integer from $1,\dots,n$ and then comes back to 0. What ...
2 votes
1 answer
105 views
Maximisation of functions of the form $f(x) = \sqrt{1 - x^2} + (ax+b)x$
I am studying a function arising in the analysis of robust aggregation rules in distributed learning, but the question is purely analytical. The function I am facing depends on parameters $a, b > 0$...
2 votes
1 answer
97 views
Simplex Method - How to know which basis to choose after the first iteration?
I'm trying to understand how to correctly choose the next basis after the first iteration in the simplex method. In my problem, I have the following minimization form: $$ \begin{aligned} \min z &= ...
1 vote
1 answer
85 views
Maximizing the area of a triangle
I am given 3 radii $r_a, r_b, r_c$ and I want to determine the 3 angles $\phi_a,\phi_b,\phi_c$ for which the area of the triangle defined by $\left(r_a\cos(\phi_a),r_a\sin(\phi_a)\right),\,\left(r_b\...
0 votes
1 answer
99 views
Fermat-Torricelli Weighted Point
I am in the process of designing a global trajectory program for civil aircraft. Two aircraft depart from their airports, join together to create a formation, then later separate and land at their ...