How to find the dual of max flow using bounding? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Difficulties in Writing the Dual of a Primal ProgramDuality. Is this the correct Dual to this Primal L.P.?Integer linear programming, energy constrained max-flow problem, column generationDual problem to max flow with leaking and minimal flowWhat is the significance of an infeasible solution to a network flow problem?Obtaining the Lagrangian dual by relaxationWrite down the dual LP and show that $y$ is a feasible solution to the dual LP.Dual Of Integer Network FormulationDeriving the dual of the minimum cost flow problem.Dual of a linear program.
What items from the Roman-age tech-level could be used to deter all creatures from entering a small area?
3 doors, three guards, one stone
Why is there no army of Iron-Mans in the MCU?
Unexpected result with right shift after bitwise negation
When is phishing education going too far?
Cauchy Sequence Characterized only By Directly Neighbouring Sequence Members
What's the difference between (size_t)-1 and ~0?
Why don't the Weasley twins use magic outside of school if the Trace can only find the location of spells cast?
Should you tell Jews they are breaking a commandment?
I'm thinking of a number
Is above average number of years spent on PhD considered a red flag in future academia or industry positions?
How can players take actions together that are impossible otherwise?
Notation for two qubit composite product state
Was credit for the black hole image misattributed?
How does modal jazz use chord progressions?
Is it possible to ask for a hotel room without minibar/extra services?
Mortgage adviser recommends a longer term than necessary combined with overpayments
Who can trigger ship-wide alerts in Star Trek?
Is there a service that would inform me whenever a new direct route is scheduled from a given airport?
Unable to start mainnet node docker container
Can a monk deflect thrown melee weapons?
Single author papers against my advisor's will?
Jazz greats knew nothing of modes. Why are they used to improvise on standards?
Direct Experience of Meditation
How to find the dual of max flow using bounding?
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Difficulties in Writing the Dual of a Primal ProgramDuality. Is this the correct Dual to this Primal L.P.?Integer linear programming, energy constrained max-flow problem, column generationDual problem to max flow with leaking and minimal flowWhat is the significance of an infeasible solution to a network flow problem?Obtaining the Lagrangian dual by relaxationWrite down the dual LP and show that $y$ is a feasible solution to the dual LP.Dual Of Integer Network FormulationDeriving the dual of the minimum cost flow problem.Dual of a linear program.
$begingroup$
I am learning about dual programs in a grad class, but the lectures are lacking. I had to teach myself the bounding method and I understand it, but I'm not sure how to apply it to the Max-flow problem. We did not go over how we obtained the dual in much detail during lecture.
Here is the concept I am trying to use:
To find the dual of
$$max_x c^Tx\
texts.t. Axleq b\
-Ixleq 0
$$
where $I$ is the identity matrix, note that for any $y,z geq 0$ and feasible solution the following must hold:
$$y^T(Ax-b)+z^T(-Ix)leq 0.$$
After some manipulation,
$$(A^Ty-Iz)x leq b^Ty$$
which yields the dual
$$min_y b^Ty\
texts.t. A^Ty-Iz = c\
ygeq 0.$$
We can then eliminate $z$ and get the constraint $A^Txgeq c$.
From my understanding, this works because we can relate $c$ to the coefficient on $x$ in the linear combination of constraints. However, the objective function in Max-flow only deals with flow out of the source and the flow conservation and capacity constraints deal with all flows in the network. Can this method still be applied to find the dual, or is there another method I need to learn?
Here is the Max-flow problem as a LP:
$$max sum_v:(s,v)in E f(s,v)\
texts.t. sum_u:(u,v)in E f(u,v) - sum_w:(v,w)in E f(v,w) = 0, forall vin V - s,t\
f(u,v)leq c(u,v), forall (u,v)in E\
f(u,v)geq 0, forall (u,v)in E.$$
linear-programming duality-theorems
$endgroup$
add a comment |
$begingroup$
I am learning about dual programs in a grad class, but the lectures are lacking. I had to teach myself the bounding method and I understand it, but I'm not sure how to apply it to the Max-flow problem. We did not go over how we obtained the dual in much detail during lecture.
Here is the concept I am trying to use:
To find the dual of
$$max_x c^Tx\
texts.t. Axleq b\
-Ixleq 0
$$
where $I$ is the identity matrix, note that for any $y,z geq 0$ and feasible solution the following must hold:
$$y^T(Ax-b)+z^T(-Ix)leq 0.$$
After some manipulation,
$$(A^Ty-Iz)x leq b^Ty$$
which yields the dual
$$min_y b^Ty\
texts.t. A^Ty-Iz = c\
ygeq 0.$$
We can then eliminate $z$ and get the constraint $A^Txgeq c$.
From my understanding, this works because we can relate $c$ to the coefficient on $x$ in the linear combination of constraints. However, the objective function in Max-flow only deals with flow out of the source and the flow conservation and capacity constraints deal with all flows in the network. Can this method still be applied to find the dual, or is there another method I need to learn?
Here is the Max-flow problem as a LP:
$$max sum_v:(s,v)in E f(s,v)\
texts.t. sum_u:(u,v)in E f(u,v) - sum_w:(v,w)in E f(v,w) = 0, forall vin V - s,t\
f(u,v)leq c(u,v), forall (u,v)in E\
f(u,v)geq 0, forall (u,v)in E.$$
linear-programming duality-theorems
$endgroup$
add a comment |
$begingroup$
I am learning about dual programs in a grad class, but the lectures are lacking. I had to teach myself the bounding method and I understand it, but I'm not sure how to apply it to the Max-flow problem. We did not go over how we obtained the dual in much detail during lecture.
Here is the concept I am trying to use:
To find the dual of
$$max_x c^Tx\
texts.t. Axleq b\
-Ixleq 0
$$
where $I$ is the identity matrix, note that for any $y,z geq 0$ and feasible solution the following must hold:
$$y^T(Ax-b)+z^T(-Ix)leq 0.$$
After some manipulation,
$$(A^Ty-Iz)x leq b^Ty$$
which yields the dual
$$min_y b^Ty\
texts.t. A^Ty-Iz = c\
ygeq 0.$$
We can then eliminate $z$ and get the constraint $A^Txgeq c$.
From my understanding, this works because we can relate $c$ to the coefficient on $x$ in the linear combination of constraints. However, the objective function in Max-flow only deals with flow out of the source and the flow conservation and capacity constraints deal with all flows in the network. Can this method still be applied to find the dual, or is there another method I need to learn?
Here is the Max-flow problem as a LP:
$$max sum_v:(s,v)in E f(s,v)\
texts.t. sum_u:(u,v)in E f(u,v) - sum_w:(v,w)in E f(v,w) = 0, forall vin V - s,t\
f(u,v)leq c(u,v), forall (u,v)in E\
f(u,v)geq 0, forall (u,v)in E.$$
linear-programming duality-theorems
$endgroup$
I am learning about dual programs in a grad class, but the lectures are lacking. I had to teach myself the bounding method and I understand it, but I'm not sure how to apply it to the Max-flow problem. We did not go over how we obtained the dual in much detail during lecture.
Here is the concept I am trying to use:
To find the dual of
$$max_x c^Tx\
texts.t. Axleq b\
-Ixleq 0
$$
where $I$ is the identity matrix, note that for any $y,z geq 0$ and feasible solution the following must hold:
$$y^T(Ax-b)+z^T(-Ix)leq 0.$$
After some manipulation,
$$(A^Ty-Iz)x leq b^Ty$$
which yields the dual
$$min_y b^Ty\
texts.t. A^Ty-Iz = c\
ygeq 0.$$
We can then eliminate $z$ and get the constraint $A^Txgeq c$.
From my understanding, this works because we can relate $c$ to the coefficient on $x$ in the linear combination of constraints. However, the objective function in Max-flow only deals with flow out of the source and the flow conservation and capacity constraints deal with all flows in the network. Can this method still be applied to find the dual, or is there another method I need to learn?
Here is the Max-flow problem as a LP:
$$max sum_v:(s,v)in E f(s,v)\
texts.t. sum_u:(u,v)in E f(u,v) - sum_w:(v,w)in E f(v,w) = 0, forall vin V - s,t\
f(u,v)leq c(u,v), forall (u,v)in E\
f(u,v)geq 0, forall (u,v)in E.$$
linear-programming duality-theorems
linear-programming duality-theorems
asked Mar 25 at 19:32
PareodPareod
949
949
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "69"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3162228%2fhow-to-find-the-dual-of-max-flow-using-bounding%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3162228%2fhow-to-find-the-dual-of-max-flow-using-bounding%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown