Why is this a proof by contradiction for this algorithm? Isn't this a direct proof instead?












3












$begingroup$


First Slide: Find Max(A)




  1. // INPUT: A[1..n] - an array of integers

  2. // OUTPUT: an element m of A such that m >= A[j], for all 1 <= j <= A.length

  3. max = A[j==1]

  4. for j = 2 to A.length

  5. if max < A[j]

  6. max = A[j]

  7. return max


Second Slide: Proof By Contradiction



Proof: Suppose the algorithm is incorrect. Then for some input A, either:




  1. max is not an element of A or

  2. A has an element A[j] such that max < A[j]


Max is initialized to and assigned to elements of A - so (1) is impossible.



After the j-th iteration of the for loop (lines 4 - 6), max >= A[j]. From lines 5,6 max only increases. Therefore upon termination, max >= A[j] which contradicts (2).



End Of Slides



This algorithm (first slide) finds the max element in the array. This is a proof by contradiction. Isn't this algorithm already proved when it gets to max >= A[j] in the last line of the second slide. Is which contradicts (2) even necessary? Because in the second slide you showed max is in the array, and then you met the condition of a maxium m: an element m of A such
that m >= A[j] for all 1 <= j <= A.length.



This seems to be two proofs in one. And since it seems to me that the direct proof happens first, then the proof by contradiction is redundant and therefore not necessary. Am i missing something here? Is this only a proof by contradiction? Or is it a direct proof instead?



The image below is just the slides 1 and 2 that I transcribed above. From York University.



Find Max: Slides 1 and 2










share|cite|improve this question









New contributor




user100752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$








  • 3




    $begingroup$
    The proof assumes the opposite of what is to be proved then shows a contradiction. So it is a proof by contradiction. And so it is not a direct proof. It happens to prove that the algorithm is correct. "when it gets to max >= A[j]" it has gotten there by having assumed the opposite of what is to be proved; it has not proved "max >= A[j]" having assumed nothing. Indeed since it assumed something that happens to be false, anything can be derived thereafter before discharging that assumption.
    $endgroup$
    – philipxy
    Mar 25 at 8:46








  • 1




    $begingroup$
    Don't use images as main content of your post. This makes your question impossible to search and inaccessible to the visually impaired; we don't like that. Please transcribe text and mathematics (note that you can use LaTeX) and don't forget to give proper attribution to your sources!
    $endgroup$
    – dkaeae
    Mar 25 at 10:22
















3












$begingroup$


First Slide: Find Max(A)




  1. // INPUT: A[1..n] - an array of integers

  2. // OUTPUT: an element m of A such that m >= A[j], for all 1 <= j <= A.length

  3. max = A[j==1]

  4. for j = 2 to A.length

  5. if max < A[j]

  6. max = A[j]

  7. return max


Second Slide: Proof By Contradiction



Proof: Suppose the algorithm is incorrect. Then for some input A, either:




  1. max is not an element of A or

  2. A has an element A[j] such that max < A[j]


Max is initialized to and assigned to elements of A - so (1) is impossible.



After the j-th iteration of the for loop (lines 4 - 6), max >= A[j]. From lines 5,6 max only increases. Therefore upon termination, max >= A[j] which contradicts (2).



End Of Slides



This algorithm (first slide) finds the max element in the array. This is a proof by contradiction. Isn't this algorithm already proved when it gets to max >= A[j] in the last line of the second slide. Is which contradicts (2) even necessary? Because in the second slide you showed max is in the array, and then you met the condition of a maxium m: an element m of A such
that m >= A[j] for all 1 <= j <= A.length.



This seems to be two proofs in one. And since it seems to me that the direct proof happens first, then the proof by contradiction is redundant and therefore not necessary. Am i missing something here? Is this only a proof by contradiction? Or is it a direct proof instead?



The image below is just the slides 1 and 2 that I transcribed above. From York University.



Find Max: Slides 1 and 2










share|cite|improve this question









New contributor




user100752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$








  • 3




    $begingroup$
    The proof assumes the opposite of what is to be proved then shows a contradiction. So it is a proof by contradiction. And so it is not a direct proof. It happens to prove that the algorithm is correct. "when it gets to max >= A[j]" it has gotten there by having assumed the opposite of what is to be proved; it has not proved "max >= A[j]" having assumed nothing. Indeed since it assumed something that happens to be false, anything can be derived thereafter before discharging that assumption.
    $endgroup$
    – philipxy
    Mar 25 at 8:46








  • 1




    $begingroup$
    Don't use images as main content of your post. This makes your question impossible to search and inaccessible to the visually impaired; we don't like that. Please transcribe text and mathematics (note that you can use LaTeX) and don't forget to give proper attribution to your sources!
    $endgroup$
    – dkaeae
    Mar 25 at 10:22














3












3








3





$begingroup$


First Slide: Find Max(A)




  1. // INPUT: A[1..n] - an array of integers

  2. // OUTPUT: an element m of A such that m >= A[j], for all 1 <= j <= A.length

  3. max = A[j==1]

  4. for j = 2 to A.length

  5. if max < A[j]

  6. max = A[j]

  7. return max


Second Slide: Proof By Contradiction



Proof: Suppose the algorithm is incorrect. Then for some input A, either:




  1. max is not an element of A or

  2. A has an element A[j] such that max < A[j]


Max is initialized to and assigned to elements of A - so (1) is impossible.



After the j-th iteration of the for loop (lines 4 - 6), max >= A[j]. From lines 5,6 max only increases. Therefore upon termination, max >= A[j] which contradicts (2).



End Of Slides



This algorithm (first slide) finds the max element in the array. This is a proof by contradiction. Isn't this algorithm already proved when it gets to max >= A[j] in the last line of the second slide. Is which contradicts (2) even necessary? Because in the second slide you showed max is in the array, and then you met the condition of a maxium m: an element m of A such
that m >= A[j] for all 1 <= j <= A.length.



This seems to be two proofs in one. And since it seems to me that the direct proof happens first, then the proof by contradiction is redundant and therefore not necessary. Am i missing something here? Is this only a proof by contradiction? Or is it a direct proof instead?



The image below is just the slides 1 and 2 that I transcribed above. From York University.



Find Max: Slides 1 and 2










share|cite|improve this question









New contributor




user100752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.







$endgroup$




First Slide: Find Max(A)




  1. // INPUT: A[1..n] - an array of integers

  2. // OUTPUT: an element m of A such that m >= A[j], for all 1 <= j <= A.length

  3. max = A[j==1]

  4. for j = 2 to A.length

  5. if max < A[j]

  6. max = A[j]

  7. return max


Second Slide: Proof By Contradiction



Proof: Suppose the algorithm is incorrect. Then for some input A, either:




  1. max is not an element of A or

  2. A has an element A[j] such that max < A[j]


Max is initialized to and assigned to elements of A - so (1) is impossible.



After the j-th iteration of the for loop (lines 4 - 6), max >= A[j]. From lines 5,6 max only increases. Therefore upon termination, max >= A[j] which contradicts (2).



End Of Slides



This algorithm (first slide) finds the max element in the array. This is a proof by contradiction. Isn't this algorithm already proved when it gets to max >= A[j] in the last line of the second slide. Is which contradicts (2) even necessary? Because in the second slide you showed max is in the array, and then you met the condition of a maxium m: an element m of A such
that m >= A[j] for all 1 <= j <= A.length.



This seems to be two proofs in one. And since it seems to me that the direct proof happens first, then the proof by contradiction is redundant and therefore not necessary. Am i missing something here? Is this only a proof by contradiction? Or is it a direct proof instead?



The image below is just the slides 1 and 2 that I transcribed above. From York University.



Find Max: Slides 1 and 2







algorithms correctness-proof check-my-answer






share|cite|improve this question









New contributor




user100752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|cite|improve this question









New contributor




user100752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|cite|improve this question




share|cite|improve this question








edited Mar 26 at 1:25







user100752













New contributor




user100752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Mar 25 at 2:40









user100752user100752

1814




1814




New contributor




user100752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





user100752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






user100752 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.








  • 3




    $begingroup$
    The proof assumes the opposite of what is to be proved then shows a contradiction. So it is a proof by contradiction. And so it is not a direct proof. It happens to prove that the algorithm is correct. "when it gets to max >= A[j]" it has gotten there by having assumed the opposite of what is to be proved; it has not proved "max >= A[j]" having assumed nothing. Indeed since it assumed something that happens to be false, anything can be derived thereafter before discharging that assumption.
    $endgroup$
    – philipxy
    Mar 25 at 8:46








  • 1




    $begingroup$
    Don't use images as main content of your post. This makes your question impossible to search and inaccessible to the visually impaired; we don't like that. Please transcribe text and mathematics (note that you can use LaTeX) and don't forget to give proper attribution to your sources!
    $endgroup$
    – dkaeae
    Mar 25 at 10:22














  • 3




    $begingroup$
    The proof assumes the opposite of what is to be proved then shows a contradiction. So it is a proof by contradiction. And so it is not a direct proof. It happens to prove that the algorithm is correct. "when it gets to max >= A[j]" it has gotten there by having assumed the opposite of what is to be proved; it has not proved "max >= A[j]" having assumed nothing. Indeed since it assumed something that happens to be false, anything can be derived thereafter before discharging that assumption.
    $endgroup$
    – philipxy
    Mar 25 at 8:46








  • 1




    $begingroup$
    Don't use images as main content of your post. This makes your question impossible to search and inaccessible to the visually impaired; we don't like that. Please transcribe text and mathematics (note that you can use LaTeX) and don't forget to give proper attribution to your sources!
    $endgroup$
    – dkaeae
    Mar 25 at 10:22








3




3




$begingroup$
The proof assumes the opposite of what is to be proved then shows a contradiction. So it is a proof by contradiction. And so it is not a direct proof. It happens to prove that the algorithm is correct. "when it gets to max >= A[j]" it has gotten there by having assumed the opposite of what is to be proved; it has not proved "max >= A[j]" having assumed nothing. Indeed since it assumed something that happens to be false, anything can be derived thereafter before discharging that assumption.
$endgroup$
– philipxy
Mar 25 at 8:46






$begingroup$
The proof assumes the opposite of what is to be proved then shows a contradiction. So it is a proof by contradiction. And so it is not a direct proof. It happens to prove that the algorithm is correct. "when it gets to max >= A[j]" it has gotten there by having assumed the opposite of what is to be proved; it has not proved "max >= A[j]" having assumed nothing. Indeed since it assumed something that happens to be false, anything can be derived thereafter before discharging that assumption.
$endgroup$
– philipxy
Mar 25 at 8:46






1




1




$begingroup$
Don't use images as main content of your post. This makes your question impossible to search and inaccessible to the visually impaired; we don't like that. Please transcribe text and mathematics (note that you can use LaTeX) and don't forget to give proper attribution to your sources!
$endgroup$
– dkaeae
Mar 25 at 10:22




$begingroup$
Don't use images as main content of your post. This makes your question impossible to search and inaccessible to the visually impaired; we don't like that. Please transcribe text and mathematics (note that you can use LaTeX) and don't forget to give proper attribution to your sources!
$endgroup$
– dkaeae
Mar 25 at 10:22










2 Answers
2






active

oldest

votes


















4












$begingroup$

You seem to think the structure of the proof is:




  1. suppose the algorithm is incorrect;

  2. prove that the algorithm is, in fact, correct;

  3. this contradicts 1., so the algorithm is correct.


That's almost, but not quite true. Step 2 doesn't prove that the returned value $mathrm{max}$ is bigger than every element of the array, which is what would be required to prove that the algorithm is correct. It just proves that $mathrm{max}$ is bigger than the specific array value that was supposed to be a counterexample in step 1.



But, as Yuval has pointed out, the proof is much easier if you forget about contradiction completely and prove that $mathrm{max}$ is in the array (identical to the given proof) and then show that $mathrm{max}$ is at least as big as every array element (identical to the proof except "for all $j$" instead of just for one supposed counterexample.






share|cite|improve this answer









$endgroup$













  • $begingroup$
    When it says "after the j-th iteration of the for-loop (lines 4 - 6) max >= A[j]" is it talking specifically about the index of the assumed counter example A[j]? When I initially read this proof I was thinking about j taking on all the values, so I was thinking at the end of each iteration max >= A[j]. And this is why I guess I was thinking along the lines of a direct proof.
    $endgroup$
    – user100752
    2 days ago












  • $begingroup$
    @user100752 Yes, it's specifically the $j$ in point 2.
    $endgroup$
    – David Richerby
    2 days ago



















3












$begingroup$

It's a proof by contradiction that could easily be rewritten as a direct proof.



To rephrase it as a direct proof, we divide it into two claims:





  1. $max$ is an element of $A$.


  2. $max geq A[j]$ for all $j$.


We can conclude that $max = max(A)$.






share|cite|improve this answer









$endgroup$














    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
    });


    }
    });






    user100752 is a new contributor. Be nice, and check out our Code of Conduct.










    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fcs.stackexchange.com%2fquestions%2f106019%2fwhy-is-this-a-proof-by-contradiction-for-this-algorithm-isnt-this-a-direct-pro%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









    4












    $begingroup$

    You seem to think the structure of the proof is:




    1. suppose the algorithm is incorrect;

    2. prove that the algorithm is, in fact, correct;

    3. this contradicts 1., so the algorithm is correct.


    That's almost, but not quite true. Step 2 doesn't prove that the returned value $mathrm{max}$ is bigger than every element of the array, which is what would be required to prove that the algorithm is correct. It just proves that $mathrm{max}$ is bigger than the specific array value that was supposed to be a counterexample in step 1.



    But, as Yuval has pointed out, the proof is much easier if you forget about contradiction completely and prove that $mathrm{max}$ is in the array (identical to the given proof) and then show that $mathrm{max}$ is at least as big as every array element (identical to the proof except "for all $j$" instead of just for one supposed counterexample.






    share|cite|improve this answer









    $endgroup$













    • $begingroup$
      When it says "after the j-th iteration of the for-loop (lines 4 - 6) max >= A[j]" is it talking specifically about the index of the assumed counter example A[j]? When I initially read this proof I was thinking about j taking on all the values, so I was thinking at the end of each iteration max >= A[j]. And this is why I guess I was thinking along the lines of a direct proof.
      $endgroup$
      – user100752
      2 days ago












    • $begingroup$
      @user100752 Yes, it's specifically the $j$ in point 2.
      $endgroup$
      – David Richerby
      2 days ago
















    4












    $begingroup$

    You seem to think the structure of the proof is:




    1. suppose the algorithm is incorrect;

    2. prove that the algorithm is, in fact, correct;

    3. this contradicts 1., so the algorithm is correct.


    That's almost, but not quite true. Step 2 doesn't prove that the returned value $mathrm{max}$ is bigger than every element of the array, which is what would be required to prove that the algorithm is correct. It just proves that $mathrm{max}$ is bigger than the specific array value that was supposed to be a counterexample in step 1.



    But, as Yuval has pointed out, the proof is much easier if you forget about contradiction completely and prove that $mathrm{max}$ is in the array (identical to the given proof) and then show that $mathrm{max}$ is at least as big as every array element (identical to the proof except "for all $j$" instead of just for one supposed counterexample.






    share|cite|improve this answer









    $endgroup$













    • $begingroup$
      When it says "after the j-th iteration of the for-loop (lines 4 - 6) max >= A[j]" is it talking specifically about the index of the assumed counter example A[j]? When I initially read this proof I was thinking about j taking on all the values, so I was thinking at the end of each iteration max >= A[j]. And this is why I guess I was thinking along the lines of a direct proof.
      $endgroup$
      – user100752
      2 days ago












    • $begingroup$
      @user100752 Yes, it's specifically the $j$ in point 2.
      $endgroup$
      – David Richerby
      2 days ago














    4












    4








    4





    $begingroup$

    You seem to think the structure of the proof is:




    1. suppose the algorithm is incorrect;

    2. prove that the algorithm is, in fact, correct;

    3. this contradicts 1., so the algorithm is correct.


    That's almost, but not quite true. Step 2 doesn't prove that the returned value $mathrm{max}$ is bigger than every element of the array, which is what would be required to prove that the algorithm is correct. It just proves that $mathrm{max}$ is bigger than the specific array value that was supposed to be a counterexample in step 1.



    But, as Yuval has pointed out, the proof is much easier if you forget about contradiction completely and prove that $mathrm{max}$ is in the array (identical to the given proof) and then show that $mathrm{max}$ is at least as big as every array element (identical to the proof except "for all $j$" instead of just for one supposed counterexample.






    share|cite|improve this answer









    $endgroup$



    You seem to think the structure of the proof is:




    1. suppose the algorithm is incorrect;

    2. prove that the algorithm is, in fact, correct;

    3. this contradicts 1., so the algorithm is correct.


    That's almost, but not quite true. Step 2 doesn't prove that the returned value $mathrm{max}$ is bigger than every element of the array, which is what would be required to prove that the algorithm is correct. It just proves that $mathrm{max}$ is bigger than the specific array value that was supposed to be a counterexample in step 1.



    But, as Yuval has pointed out, the proof is much easier if you forget about contradiction completely and prove that $mathrm{max}$ is in the array (identical to the given proof) and then show that $mathrm{max}$ is at least as big as every array element (identical to the proof except "for all $j$" instead of just for one supposed counterexample.







    share|cite|improve this answer












    share|cite|improve this answer



    share|cite|improve this answer










    answered Mar 25 at 8:51









    David RicherbyDavid Richerby

    69.3k15106195




    69.3k15106195












    • $begingroup$
      When it says "after the j-th iteration of the for-loop (lines 4 - 6) max >= A[j]" is it talking specifically about the index of the assumed counter example A[j]? When I initially read this proof I was thinking about j taking on all the values, so I was thinking at the end of each iteration max >= A[j]. And this is why I guess I was thinking along the lines of a direct proof.
      $endgroup$
      – user100752
      2 days ago












    • $begingroup$
      @user100752 Yes, it's specifically the $j$ in point 2.
      $endgroup$
      – David Richerby
      2 days ago


















    • $begingroup$
      When it says "after the j-th iteration of the for-loop (lines 4 - 6) max >= A[j]" is it talking specifically about the index of the assumed counter example A[j]? When I initially read this proof I was thinking about j taking on all the values, so I was thinking at the end of each iteration max >= A[j]. And this is why I guess I was thinking along the lines of a direct proof.
      $endgroup$
      – user100752
      2 days ago












    • $begingroup$
      @user100752 Yes, it's specifically the $j$ in point 2.
      $endgroup$
      – David Richerby
      2 days ago
















    $begingroup$
    When it says "after the j-th iteration of the for-loop (lines 4 - 6) max >= A[j]" is it talking specifically about the index of the assumed counter example A[j]? When I initially read this proof I was thinking about j taking on all the values, so I was thinking at the end of each iteration max >= A[j]. And this is why I guess I was thinking along the lines of a direct proof.
    $endgroup$
    – user100752
    2 days ago






    $begingroup$
    When it says "after the j-th iteration of the for-loop (lines 4 - 6) max >= A[j]" is it talking specifically about the index of the assumed counter example A[j]? When I initially read this proof I was thinking about j taking on all the values, so I was thinking at the end of each iteration max >= A[j]. And this is why I guess I was thinking along the lines of a direct proof.
    $endgroup$
    – user100752
    2 days ago














    $begingroup$
    @user100752 Yes, it's specifically the $j$ in point 2.
    $endgroup$
    – David Richerby
    2 days ago




    $begingroup$
    @user100752 Yes, it's specifically the $j$ in point 2.
    $endgroup$
    – David Richerby
    2 days ago











    3












    $begingroup$

    It's a proof by contradiction that could easily be rewritten as a direct proof.



    To rephrase it as a direct proof, we divide it into two claims:





    1. $max$ is an element of $A$.


    2. $max geq A[j]$ for all $j$.


    We can conclude that $max = max(A)$.






    share|cite|improve this answer









    $endgroup$


















      3












      $begingroup$

      It's a proof by contradiction that could easily be rewritten as a direct proof.



      To rephrase it as a direct proof, we divide it into two claims:





      1. $max$ is an element of $A$.


      2. $max geq A[j]$ for all $j$.


      We can conclude that $max = max(A)$.






      share|cite|improve this answer









      $endgroup$
















        3












        3








        3





        $begingroup$

        It's a proof by contradiction that could easily be rewritten as a direct proof.



        To rephrase it as a direct proof, we divide it into two claims:





        1. $max$ is an element of $A$.


        2. $max geq A[j]$ for all $j$.


        We can conclude that $max = max(A)$.






        share|cite|improve this answer









        $endgroup$



        It's a proof by contradiction that could easily be rewritten as a direct proof.



        To rephrase it as a direct proof, we divide it into two claims:





        1. $max$ is an element of $A$.


        2. $max geq A[j]$ for all $j$.


        We can conclude that $max = max(A)$.







        share|cite|improve this answer












        share|cite|improve this answer



        share|cite|improve this answer










        answered Mar 25 at 7:36









        Yuval FilmusYuval Filmus

        195k14184349




        195k14184349






















            user100752 is a new contributor. Be nice, and check out our Code of Conduct.










            draft saved

            draft discarded


















            user100752 is a new contributor. Be nice, and check out our Code of Conduct.













            user100752 is a new contributor. Be nice, and check out our Code of Conduct.












            user100752 is a new contributor. Be nice, and check out our Code of Conduct.
















            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%2f106019%2fwhy-is-this-a-proof-by-contradiction-for-this-algorithm-isnt-this-a-direct-pro%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

            Plaza Victoria

            In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

            How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...