One-dimensional search methods












0












$begingroup$


Among the one-dimensional search methods there are some, such as the one of the golden-section search, that only use the function, and others such as the one of the bisection, that use the derivative of the function.



Do you think that something similar to the bisection method could be done, but using only the value of the function, without derivatives? That is, take the average value of the interval and evaluate it to reduce the interval in each iteration in half










share|cite|improve this question









$endgroup$

















    0












    $begingroup$


    Among the one-dimensional search methods there are some, such as the one of the golden-section search, that only use the function, and others such as the one of the bisection, that use the derivative of the function.



    Do you think that something similar to the bisection method could be done, but using only the value of the function, without derivatives? That is, take the average value of the interval and evaluate it to reduce the interval in each iteration in half










    share|cite|improve this question









    $endgroup$















      0












      0








      0





      $begingroup$


      Among the one-dimensional search methods there are some, such as the one of the golden-section search, that only use the function, and others such as the one of the bisection, that use the derivative of the function.



      Do you think that something similar to the bisection method could be done, but using only the value of the function, without derivatives? That is, take the average value of the interval and evaluate it to reduce the interval in each iteration in half










      share|cite|improve this question









      $endgroup$




      Among the one-dimensional search methods there are some, such as the one of the golden-section search, that only use the function, and others such as the one of the bisection, that use the derivative of the function.



      Do you think that something similar to the bisection method could be done, but using only the value of the function, without derivatives? That is, take the average value of the interval and evaluate it to reduce the interval in each iteration in half







      optimization convex-optimization






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked Jan 6 at 16:21









      J. GarcíaJ. García

      618




      618






















          2 Answers
          2






          active

          oldest

          votes


















          2












          $begingroup$

          Knowing the value of $f$ at the midpoint and the left and right ends of an interval is not sufficient by itself to determine whether the minimum is in the left half or right half of the interval. It's easy to construct examples to see this.



          For example, if $f(0)=2$, $f(1)=1$, and $f(2)=2$, you can't tell whether the minimum is in the interval from 0 to 1 or the interval from 1 to 2.






          share|cite|improve this answer











          $endgroup$













          • $begingroup$
            Can you share an example?
            $endgroup$
            – J. García
            Jan 7 at 9:27










          • $begingroup$
            I've added one into the the answer.
            $endgroup$
            – Brian Borchers
            Jan 7 at 15:52



















          1












          $begingroup$

          There is ternary search. It is a generalization of binary search for finding the maximum (or minimum) of a unimodal function. The idea is, you split the search space $[a, b)$ into three (approximately) equal parts, $[a, m)$, $[m, n)$, and $[n, b)$, and can discard one of the side ones. If $f(m) < f(n)$, then your maximum is in $[m, b)$. If $f(m) geq f(n)$, then the maximum is in $[a, n)$.






          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            But, using only the average point of the interval? Like Bisection Method, but not using $f'$, only $f$
            $endgroup$
            – J. García
            Jan 6 at 20:09












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


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3064061%2fone-dimensional-search-methods%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$

          Knowing the value of $f$ at the midpoint and the left and right ends of an interval is not sufficient by itself to determine whether the minimum is in the left half or right half of the interval. It's easy to construct examples to see this.



          For example, if $f(0)=2$, $f(1)=1$, and $f(2)=2$, you can't tell whether the minimum is in the interval from 0 to 1 or the interval from 1 to 2.






          share|cite|improve this answer











          $endgroup$













          • $begingroup$
            Can you share an example?
            $endgroup$
            – J. García
            Jan 7 at 9:27










          • $begingroup$
            I've added one into the the answer.
            $endgroup$
            – Brian Borchers
            Jan 7 at 15:52
















          2












          $begingroup$

          Knowing the value of $f$ at the midpoint and the left and right ends of an interval is not sufficient by itself to determine whether the minimum is in the left half or right half of the interval. It's easy to construct examples to see this.



          For example, if $f(0)=2$, $f(1)=1$, and $f(2)=2$, you can't tell whether the minimum is in the interval from 0 to 1 or the interval from 1 to 2.






          share|cite|improve this answer











          $endgroup$













          • $begingroup$
            Can you share an example?
            $endgroup$
            – J. García
            Jan 7 at 9:27










          • $begingroup$
            I've added one into the the answer.
            $endgroup$
            – Brian Borchers
            Jan 7 at 15:52














          2












          2








          2





          $begingroup$

          Knowing the value of $f$ at the midpoint and the left and right ends of an interval is not sufficient by itself to determine whether the minimum is in the left half or right half of the interval. It's easy to construct examples to see this.



          For example, if $f(0)=2$, $f(1)=1$, and $f(2)=2$, you can't tell whether the minimum is in the interval from 0 to 1 or the interval from 1 to 2.






          share|cite|improve this answer











          $endgroup$



          Knowing the value of $f$ at the midpoint and the left and right ends of an interval is not sufficient by itself to determine whether the minimum is in the left half or right half of the interval. It's easy to construct examples to see this.



          For example, if $f(0)=2$, $f(1)=1$, and $f(2)=2$, you can't tell whether the minimum is in the interval from 0 to 1 or the interval from 1 to 2.







          share|cite|improve this answer














          share|cite|improve this answer



          share|cite|improve this answer








          edited Jan 7 at 15:52

























          answered Jan 7 at 5:10









          Brian BorchersBrian Borchers

          6,27611320




          6,27611320












          • $begingroup$
            Can you share an example?
            $endgroup$
            – J. García
            Jan 7 at 9:27










          • $begingroup$
            I've added one into the the answer.
            $endgroup$
            – Brian Borchers
            Jan 7 at 15:52


















          • $begingroup$
            Can you share an example?
            $endgroup$
            – J. García
            Jan 7 at 9:27










          • $begingroup$
            I've added one into the the answer.
            $endgroup$
            – Brian Borchers
            Jan 7 at 15:52
















          $begingroup$
          Can you share an example?
          $endgroup$
          – J. García
          Jan 7 at 9:27




          $begingroup$
          Can you share an example?
          $endgroup$
          – J. García
          Jan 7 at 9:27












          $begingroup$
          I've added one into the the answer.
          $endgroup$
          – Brian Borchers
          Jan 7 at 15:52




          $begingroup$
          I've added one into the the answer.
          $endgroup$
          – Brian Borchers
          Jan 7 at 15:52











          1












          $begingroup$

          There is ternary search. It is a generalization of binary search for finding the maximum (or minimum) of a unimodal function. The idea is, you split the search space $[a, b)$ into three (approximately) equal parts, $[a, m)$, $[m, n)$, and $[n, b)$, and can discard one of the side ones. If $f(m) < f(n)$, then your maximum is in $[m, b)$. If $f(m) geq f(n)$, then the maximum is in $[a, n)$.






          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            But, using only the average point of the interval? Like Bisection Method, but not using $f'$, only $f$
            $endgroup$
            – J. García
            Jan 6 at 20:09
















          1












          $begingroup$

          There is ternary search. It is a generalization of binary search for finding the maximum (or minimum) of a unimodal function. The idea is, you split the search space $[a, b)$ into three (approximately) equal parts, $[a, m)$, $[m, n)$, and $[n, b)$, and can discard one of the side ones. If $f(m) < f(n)$, then your maximum is in $[m, b)$. If $f(m) geq f(n)$, then the maximum is in $[a, n)$.






          share|cite|improve this answer









          $endgroup$













          • $begingroup$
            But, using only the average point of the interval? Like Bisection Method, but not using $f'$, only $f$
            $endgroup$
            – J. García
            Jan 6 at 20:09














          1












          1








          1





          $begingroup$

          There is ternary search. It is a generalization of binary search for finding the maximum (or minimum) of a unimodal function. The idea is, you split the search space $[a, b)$ into three (approximately) equal parts, $[a, m)$, $[m, n)$, and $[n, b)$, and can discard one of the side ones. If $f(m) < f(n)$, then your maximum is in $[m, b)$. If $f(m) geq f(n)$, then the maximum is in $[a, n)$.






          share|cite|improve this answer









          $endgroup$



          There is ternary search. It is a generalization of binary search for finding the maximum (or minimum) of a unimodal function. The idea is, you split the search space $[a, b)$ into three (approximately) equal parts, $[a, m)$, $[m, n)$, and $[n, b)$, and can discard one of the side ones. If $f(m) < f(n)$, then your maximum is in $[m, b)$. If $f(m) geq f(n)$, then the maximum is in $[a, n)$.







          share|cite|improve this answer












          share|cite|improve this answer



          share|cite|improve this answer










          answered Jan 6 at 16:33









          Todor MarkovTodor Markov

          2,420412




          2,420412












          • $begingroup$
            But, using only the average point of the interval? Like Bisection Method, but not using $f'$, only $f$
            $endgroup$
            – J. García
            Jan 6 at 20:09


















          • $begingroup$
            But, using only the average point of the interval? Like Bisection Method, but not using $f'$, only $f$
            $endgroup$
            – J. García
            Jan 6 at 20:09
















          $begingroup$
          But, using only the average point of the interval? Like Bisection Method, but not using $f'$, only $f$
          $endgroup$
          – J. García
          Jan 6 at 20:09




          $begingroup$
          But, using only the average point of the interval? Like Bisection Method, but not using $f'$, only $f$
          $endgroup$
          – J. García
          Jan 6 at 20:09


















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3064061%2fone-dimensional-search-methods%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

          How do I know what Microsoft account the skydrive app is syncing to?

          When does type information flow backwards in C++?

          Grease: Live!