Why CLRS example on residual networks does not follows its formula?Why is the complexity of negative-cycle-cancelling $O(V^2AUW)$?CLRS - Maxflow Augmented Flow Lemma 26.1 - don't understand use of def. in proofFord-Fulkerson algorithm clarificationLinear programming formulation of cheapest k-edge path between two nodesWhy is it that the flow value can increased along an augmenting path $p$ in a residual network?Maximum flow with Edmonds–Karp algorithmHow would one construct conjunctively local predicate of order k for checking if a shape is Convex?Equivalence of minimum cost circulation problem and minimum cost max flow problemGiven max-flow determine if edge is in a min-cutWhat is the intuition behind the way of reading off a dual optimal solution from simplex primal tabular in CLRS?

Is the language p and n are natural numbers and there's no prime number in [p,p+n] belongs to NP class?

Example of a relative pronoun

If I cast Expeditious Retreat, can I Dash as a bonus action on the same turn?

Draw simple lines in Inkscape

What is the command to reset a PC without deleting any files

Why don't electron-positron collisions release infinite energy?

Copenhagen passport control - US citizen

How can the DM most effectively choose 1 out of an odd number of players to be targeted by an attack or effect?

Continuity at a point in terms of closure

Why CLRS example on residual networks does not follows its formula?

N.B. ligature in Latex

What would happen to a modern skyscraper if it rains micro blackholes?

Motorized valve interfering with button?

The magic money tree problem

Email Account under attack (really) - anything I can do?

Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?

How is it possible to have an ability score that is less than 3?

Why is an old chain unsafe?

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

Can I interfere when another PC is about to be attacked?

DOS, create pipe for stdin/stdout of command.com(or 4dos.com) in C or Batch?

Japan - Plan around max visa duration

How can bays and straits be determined in a procedurally generated map?

XeLaTeX and pdfLaTeX ignore hyphenation



Why CLRS example on residual networks does not follows its formula?


Why is the complexity of negative-cycle-cancelling $O(V^2AUW)$?CLRS - Maxflow Augmented Flow Lemma 26.1 - don't understand use of def. in proofFord-Fulkerson algorithm clarificationLinear programming formulation of cheapest k-edge path between two nodesWhy is it that the flow value can increased along an augmenting path $p$ in a residual network?Maximum flow with Edmonds–Karp algorithmHow would one construct conjunctively local predicate of order k for checking if a shape is Convex?Equivalence of minimum cost circulation problem and minimum cost max flow problemGiven max-flow determine if edge is in a min-cutWhat is the intuition behind the way of reading off a dual optimal solution from simplex primal tabular in CLRS?













1












$begingroup$


I am learning algorithms to solve Maximum Flow problem by reading the CRLS book and confused by the following figure:



figure 26.4



That is:




A flow in a residual network provides a roadmap for adding flow to the
original flow network. If $f$ is a flow in $G$ and $f'$ is a flow in
the corresponding residual network $G_f$, we define $f uparrow f'$,
the augmentation of flow $f$ by $f'$, to be a function from $V times V$ to
$R$, defined by



$$(f uparrow f')(u, v) = begincases f(u,v) + f'(u, v) - f'(v, u) &
> textif (u,v) $in$ E \ 0 & textotherwise endcases$$




How the flow network in (c), for example $(s, v_2)$ got the flow 12 ?
If we follow the formula, it must have a flow 5:
$8 + 5 - 8 = 5$










share|cite|improve this question









$endgroup$
















    1












    $begingroup$


    I am learning algorithms to solve Maximum Flow problem by reading the CRLS book and confused by the following figure:



    figure 26.4



    That is:




    A flow in a residual network provides a roadmap for adding flow to the
    original flow network. If $f$ is a flow in $G$ and $f'$ is a flow in
    the corresponding residual network $G_f$, we define $f uparrow f'$,
    the augmentation of flow $f$ by $f'$, to be a function from $V times V$ to
    $R$, defined by



    $$(f uparrow f')(u, v) = begincases f(u,v) + f'(u, v) - f'(v, u) &
    > textif (u,v) $in$ E \ 0 & textotherwise endcases$$




    How the flow network in (c), for example $(s, v_2)$ got the flow 12 ?
    If we follow the formula, it must have a flow 5:
    $8 + 5 - 8 = 5$










    share|cite|improve this question









    $endgroup$














      1












      1








      1





      $begingroup$


      I am learning algorithms to solve Maximum Flow problem by reading the CRLS book and confused by the following figure:



      figure 26.4



      That is:




      A flow in a residual network provides a roadmap for adding flow to the
      original flow network. If $f$ is a flow in $G$ and $f'$ is a flow in
      the corresponding residual network $G_f$, we define $f uparrow f'$,
      the augmentation of flow $f$ by $f'$, to be a function from $V times V$ to
      $R$, defined by



      $$(f uparrow f')(u, v) = begincases f(u,v) + f'(u, v) - f'(v, u) &
      > textif (u,v) $in$ E \ 0 & textotherwise endcases$$




      How the flow network in (c), for example $(s, v_2)$ got the flow 12 ?
      If we follow the formula, it must have a flow 5:
      $8 + 5 - 8 = 5$










      share|cite|improve this question









      $endgroup$




      I am learning algorithms to solve Maximum Flow problem by reading the CRLS book and confused by the following figure:



      figure 26.4



      That is:




      A flow in a residual network provides a roadmap for adding flow to the
      original flow network. If $f$ is a flow in $G$ and $f'$ is a flow in
      the corresponding residual network $G_f$, we define $f uparrow f'$,
      the augmentation of flow $f$ by $f'$, to be a function from $V times V$ to
      $R$, defined by



      $$(f uparrow f')(u, v) = begincases f(u,v) + f'(u, v) - f'(v, u) &
      > textif (u,v) $in$ E \ 0 & textotherwise endcases$$




      How the flow network in (c), for example $(s, v_2)$ got the flow 12 ?
      If we follow the formula, it must have a flow 5:
      $8 + 5 - 8 = 5$







      algorithms network-flow






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked 5 hours ago









      maksadbekmaksadbek

      1185




      1185




















          2 Answers
          2






          active

          oldest

          votes


















          2












          $begingroup$

          That's not what the formula gives you. As the caption says, the capacity of the augmenting path in the residual network in (b) is $4$. Therefore we send 4 units of flow along the augmenting path from $s$ to $t$, namely, the path $s to v_2 to v_3 to t$. In particular, $f(s,v_2)=8$, $f'(s,v_2)=4$, and $f'(v_2,s)=0$, so the updated flow is $8+4-0=12$.






          share|cite|improve this answer









          $endgroup$




















            2












            $begingroup$

            It is explained in part (b) of the caption of Figure 26.4.




            The residual network $G_f$ with augmenting path $p$ shaded; its residual capacity is $c_f(p)=c_f(v_2,v_3)=4$.




            Since the capacity of path $p$ is 4 (not 5), we find a flow $f'$ in the residual network $G_f$ that is defined by $f'(s,v_2)=f'(v_2,v_3)=f'(v_3,t)=4$. So for the network flow $fuparrow f'$ in (c), we have
            $$ (fuparrow f')(v_2, v_3)=f(v_2,v_3)+f'(v_2,v_3) = 8+4=12.$$






            share|cite|improve this answer











            $endgroup$








            • 2




              $begingroup$
              I think you mean $=12$ not $=8$.
              $endgroup$
              – D.W.
              3 hours ago











            Your Answer





            StackExchange.ifUsing("editor", function ()
            return StackExchange.using("mathjaxEditing", function ()
            StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix)
            StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
            );
            );
            , "mathjax-editing");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "419"
            ;
            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: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            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
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcs.stackexchange.com%2fquestions%2f106608%2fwhy-clrs-example-on-residual-networks-does-not-follows-its-formula%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2












            $begingroup$

            That's not what the formula gives you. As the caption says, the capacity of the augmenting path in the residual network in (b) is $4$. Therefore we send 4 units of flow along the augmenting path from $s$ to $t$, namely, the path $s to v_2 to v_3 to t$. In particular, $f(s,v_2)=8$, $f'(s,v_2)=4$, and $f'(v_2,s)=0$, so the updated flow is $8+4-0=12$.






            share|cite|improve this answer









            $endgroup$

















              2












              $begingroup$

              That's not what the formula gives you. As the caption says, the capacity of the augmenting path in the residual network in (b) is $4$. Therefore we send 4 units of flow along the augmenting path from $s$ to $t$, namely, the path $s to v_2 to v_3 to t$. In particular, $f(s,v_2)=8$, $f'(s,v_2)=4$, and $f'(v_2,s)=0$, so the updated flow is $8+4-0=12$.






              share|cite|improve this answer









              $endgroup$















                2












                2








                2





                $begingroup$

                That's not what the formula gives you. As the caption says, the capacity of the augmenting path in the residual network in (b) is $4$. Therefore we send 4 units of flow along the augmenting path from $s$ to $t$, namely, the path $s to v_2 to v_3 to t$. In particular, $f(s,v_2)=8$, $f'(s,v_2)=4$, and $f'(v_2,s)=0$, so the updated flow is $8+4-0=12$.






                share|cite|improve this answer









                $endgroup$



                That's not what the formula gives you. As the caption says, the capacity of the augmenting path in the residual network in (b) is $4$. Therefore we send 4 units of flow along the augmenting path from $s$ to $t$, namely, the path $s to v_2 to v_3 to t$. In particular, $f(s,v_2)=8$, $f'(s,v_2)=4$, and $f'(v_2,s)=0$, so the updated flow is $8+4-0=12$.







                share|cite|improve this answer












                share|cite|improve this answer



                share|cite|improve this answer










                answered 3 hours ago









                D.W.D.W.

                103k12129294




                103k12129294





















                    2












                    $begingroup$

                    It is explained in part (b) of the caption of Figure 26.4.




                    The residual network $G_f$ with augmenting path $p$ shaded; its residual capacity is $c_f(p)=c_f(v_2,v_3)=4$.




                    Since the capacity of path $p$ is 4 (not 5), we find a flow $f'$ in the residual network $G_f$ that is defined by $f'(s,v_2)=f'(v_2,v_3)=f'(v_3,t)=4$. So for the network flow $fuparrow f'$ in (c), we have
                    $$ (fuparrow f')(v_2, v_3)=f(v_2,v_3)+f'(v_2,v_3) = 8+4=12.$$






                    share|cite|improve this answer











                    $endgroup$








                    • 2




                      $begingroup$
                      I think you mean $=12$ not $=8$.
                      $endgroup$
                      – D.W.
                      3 hours ago















                    2












                    $begingroup$

                    It is explained in part (b) of the caption of Figure 26.4.




                    The residual network $G_f$ with augmenting path $p$ shaded; its residual capacity is $c_f(p)=c_f(v_2,v_3)=4$.




                    Since the capacity of path $p$ is 4 (not 5), we find a flow $f'$ in the residual network $G_f$ that is defined by $f'(s,v_2)=f'(v_2,v_3)=f'(v_3,t)=4$. So for the network flow $fuparrow f'$ in (c), we have
                    $$ (fuparrow f')(v_2, v_3)=f(v_2,v_3)+f'(v_2,v_3) = 8+4=12.$$






                    share|cite|improve this answer











                    $endgroup$








                    • 2




                      $begingroup$
                      I think you mean $=12$ not $=8$.
                      $endgroup$
                      – D.W.
                      3 hours ago













                    2












                    2








                    2





                    $begingroup$

                    It is explained in part (b) of the caption of Figure 26.4.




                    The residual network $G_f$ with augmenting path $p$ shaded; its residual capacity is $c_f(p)=c_f(v_2,v_3)=4$.




                    Since the capacity of path $p$ is 4 (not 5), we find a flow $f'$ in the residual network $G_f$ that is defined by $f'(s,v_2)=f'(v_2,v_3)=f'(v_3,t)=4$. So for the network flow $fuparrow f'$ in (c), we have
                    $$ (fuparrow f')(v_2, v_3)=f(v_2,v_3)+f'(v_2,v_3) = 8+4=12.$$






                    share|cite|improve this answer











                    $endgroup$



                    It is explained in part (b) of the caption of Figure 26.4.




                    The residual network $G_f$ with augmenting path $p$ shaded; its residual capacity is $c_f(p)=c_f(v_2,v_3)=4$.




                    Since the capacity of path $p$ is 4 (not 5), we find a flow $f'$ in the residual network $G_f$ that is defined by $f'(s,v_2)=f'(v_2,v_3)=f'(v_3,t)=4$. So for the network flow $fuparrow f'$ in (c), we have
                    $$ (fuparrow f')(v_2, v_3)=f(v_2,v_3)+f'(v_2,v_3) = 8+4=12.$$







                    share|cite|improve this answer














                    share|cite|improve this answer



                    share|cite|improve this answer








                    edited 3 hours ago

























                    answered 3 hours ago









                    Apass.JackApass.Jack

                    14k1940




                    14k1940







                    • 2




                      $begingroup$
                      I think you mean $=12$ not $=8$.
                      $endgroup$
                      – D.W.
                      3 hours ago












                    • 2




                      $begingroup$
                      I think you mean $=12$ not $=8$.
                      $endgroup$
                      – D.W.
                      3 hours ago







                    2




                    2




                    $begingroup$
                    I think you mean $=12$ not $=8$.
                    $endgroup$
                    – D.W.
                    3 hours ago




                    $begingroup$
                    I think you mean $=12$ not $=8$.
                    $endgroup$
                    – D.W.
                    3 hours ago

















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Computer Science 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.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcs.stackexchange.com%2fquestions%2f106608%2fwhy-clrs-example-on-residual-networks-does-not-follows-its-formula%23new-answer', 'question_page');

                    );

                    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







                    Popular posts from this blog

                    Can not update quote_id field of “quote_item” table magento 2Magento 2.1 - We can't remove the item. (Shopping Cart doesnt allow us to remove items before becomes empty)Add value for custom quote item attribute using REST apiREST API endpoint v1/carts/cartId/items always returns error messageCorrect way to save entries to databaseHow to remove all associated quote objects of a customer completelyMagento 2 - Save value from custom input field to quote_itemGet quote_item data using quote id and product id filter in Magento 2How to set additional data to quote_item table from controller in Magento 2?What is the purpose of additional_data column in quote_item table in magento2Set Custom Price to Quote item magento2 from controller

                    Magento 2 disable Secret Key on URL's from terminal The Next CEO of Stack OverflowMagento 2 Shortcut/GUI tool to perform commandline tasks for windowsIn menu add configuration linkMagento oAuth : Generating access token and access secretMagento 2 security key issue in Third-Party API redirect URIPublic actions in admin controllersHow to Disable Cache in Custom WidgetURL Key not changing in Magento 2Product URL Key gets deleted when importing custom options - Magento 2Problem with reindex terminalMagento 2 - bin/magento Commands not working in Cpanel Terminal

                    Aasi (pallopeli) Navigointivalikko