Prove: Given $x_0$ is a cluster point of a set $S$ and $f:S to mathbb{R}$ then $f$ can have at most one limit...











up vote
0
down vote

favorite












Essentially, I need to prove that, given a point $x_0$ in $S$ where $S subseteq mathbb{R}$, as the $x$ value converges to $x_0$, $f(x)$ converges to only one $f(x_0)$. This is poking at the idea that for every input, $x$, there cannot be more than one output, $f(x)$.



This is something that most of us knew from algebra 1, but I need to prove this statement using the definition of cluster points, continuity, etc.



Cluster point: if $x_0$ is a cluster point, then
$forall epsilon gt 0$, $(x_0- epsilon , x_0+ epsilon ) cap (S setminus {x_0}) neq phi $



definition of continuity: $forall epsilon gt 0$, $exists delta gt 0$ such that $0 lt |x-x_0| lt delta$, $x in S$, implies $|f(x)-f(x_0)| lt epsilon$.



I'm not too sure how I would approach this!










share|cite|improve this question






















  • Since in Hausdorff spaces limits are unique, there is nothing more to consider. Is f supposed to be continuous?
    – William Elliot
    Nov 26 at 1:35















up vote
0
down vote

favorite












Essentially, I need to prove that, given a point $x_0$ in $S$ where $S subseteq mathbb{R}$, as the $x$ value converges to $x_0$, $f(x)$ converges to only one $f(x_0)$. This is poking at the idea that for every input, $x$, there cannot be more than one output, $f(x)$.



This is something that most of us knew from algebra 1, but I need to prove this statement using the definition of cluster points, continuity, etc.



Cluster point: if $x_0$ is a cluster point, then
$forall epsilon gt 0$, $(x_0- epsilon , x_0+ epsilon ) cap (S setminus {x_0}) neq phi $



definition of continuity: $forall epsilon gt 0$, $exists delta gt 0$ such that $0 lt |x-x_0| lt delta$, $x in S$, implies $|f(x)-f(x_0)| lt epsilon$.



I'm not too sure how I would approach this!










share|cite|improve this question






















  • Since in Hausdorff spaces limits are unique, there is nothing more to consider. Is f supposed to be continuous?
    – William Elliot
    Nov 26 at 1:35













up vote
0
down vote

favorite









up vote
0
down vote

favorite











Essentially, I need to prove that, given a point $x_0$ in $S$ where $S subseteq mathbb{R}$, as the $x$ value converges to $x_0$, $f(x)$ converges to only one $f(x_0)$. This is poking at the idea that for every input, $x$, there cannot be more than one output, $f(x)$.



This is something that most of us knew from algebra 1, but I need to prove this statement using the definition of cluster points, continuity, etc.



Cluster point: if $x_0$ is a cluster point, then
$forall epsilon gt 0$, $(x_0- epsilon , x_0+ epsilon ) cap (S setminus {x_0}) neq phi $



definition of continuity: $forall epsilon gt 0$, $exists delta gt 0$ such that $0 lt |x-x_0| lt delta$, $x in S$, implies $|f(x)-f(x_0)| lt epsilon$.



I'm not too sure how I would approach this!










share|cite|improve this question













Essentially, I need to prove that, given a point $x_0$ in $S$ where $S subseteq mathbb{R}$, as the $x$ value converges to $x_0$, $f(x)$ converges to only one $f(x_0)$. This is poking at the idea that for every input, $x$, there cannot be more than one output, $f(x)$.



This is something that most of us knew from algebra 1, but I need to prove this statement using the definition of cluster points, continuity, etc.



Cluster point: if $x_0$ is a cluster point, then
$forall epsilon gt 0$, $(x_0- epsilon , x_0+ epsilon ) cap (S setminus {x_0}) neq phi $



definition of continuity: $forall epsilon gt 0$, $exists delta gt 0$ such that $0 lt |x-x_0| lt delta$, $x in S$, implies $|f(x)-f(x_0)| lt epsilon$.



I'm not too sure how I would approach this!







real-analysis proof-writing






share|cite|improve this question













share|cite|improve this question











share|cite|improve this question




share|cite|improve this question










asked Nov 25 at 22:53









Bob

404




404












  • Since in Hausdorff spaces limits are unique, there is nothing more to consider. Is f supposed to be continuous?
    – William Elliot
    Nov 26 at 1:35


















  • Since in Hausdorff spaces limits are unique, there is nothing more to consider. Is f supposed to be continuous?
    – William Elliot
    Nov 26 at 1:35
















Since in Hausdorff spaces limits are unique, there is nothing more to consider. Is f supposed to be continuous?
– William Elliot
Nov 26 at 1:35




Since in Hausdorff spaces limits are unique, there is nothing more to consider. Is f supposed to be continuous?
– William Elliot
Nov 26 at 1:35










2 Answers
2






active

oldest

votes

















up vote
0
down vote



accepted










First, the existence of limit at a point (say, $x_0$) does not depend on the value of the function at $x_0$. This is important because, without this idea, limit and continuity become more or less useless.



Now to show that $f$ has at most one limit as $x to x_0$, we need to show that either the limit does not exist ("zero" limit), or the limit is unique if it exists ("one" limit).



In other words, we can assume that the limit exists, and let



$$ lim_{x to x_0} f(x) = l_1$$ and $$ lim_{x to x_0} f(x) = l_2$$. Now we want to show that $l_1 = l_2$. Start from the definition.



Given $epsilon > 0$, $exists delta_1 > 0$ such that
$$|f(x)-l_1| < frac{epsilon}{2}, forall x in V_{delta_1}(x_0)cap{S}setminus{{x_0
}}$$

Also, $exists delta_2>0$ such that
$$|f(x)-l_2|<frac{epsilon}{2}, forall x in V_{delta_2}(x_0)cap{S}setminus{{x_0}}$$



. Now take $delta = min{delta_1, delta_2}$.



$$|l_1-l_2| = |l_1-f(x)+f(x)-l_2| le |l_1-f(x)|+|f(x)-l_2| < frac{epsilon}{2} + frac{epsilon}{2} = epsilon, forall x in V_delta(x_0) cap Ssetminus {{x_0}}$$. Since $x_0$ is a cluster point, $|l_1-l_2|$ is arbitrary small (but still non-negative) on a non-empty set. Can you conclude from here? (An extra hint: Suppose $forall epsilon > 0, 0le a < epsilon$, can you prove by contradiction that $a = 0$?)






share|cite|improve this answer




























    up vote
    0
    down vote













    Hint: A really classic way to approach uniqueness questions in analysis is by contradiction. Suppose $f$ had more than one limit (ie, two - say $a$ and $b$). What do you know about $left| a-b right|$? And how might this help you use the definition of a limit?






    share|cite|improve this answer





















      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',
      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%2f3013530%2fprove-given-x-0-is-a-cluster-point-of-a-set-s-and-fs-to-mathbbr-then%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








      up vote
      0
      down vote



      accepted










      First, the existence of limit at a point (say, $x_0$) does not depend on the value of the function at $x_0$. This is important because, without this idea, limit and continuity become more or less useless.



      Now to show that $f$ has at most one limit as $x to x_0$, we need to show that either the limit does not exist ("zero" limit), or the limit is unique if it exists ("one" limit).



      In other words, we can assume that the limit exists, and let



      $$ lim_{x to x_0} f(x) = l_1$$ and $$ lim_{x to x_0} f(x) = l_2$$. Now we want to show that $l_1 = l_2$. Start from the definition.



      Given $epsilon > 0$, $exists delta_1 > 0$ such that
      $$|f(x)-l_1| < frac{epsilon}{2}, forall x in V_{delta_1}(x_0)cap{S}setminus{{x_0
      }}$$

      Also, $exists delta_2>0$ such that
      $$|f(x)-l_2|<frac{epsilon}{2}, forall x in V_{delta_2}(x_0)cap{S}setminus{{x_0}}$$



      . Now take $delta = min{delta_1, delta_2}$.



      $$|l_1-l_2| = |l_1-f(x)+f(x)-l_2| le |l_1-f(x)|+|f(x)-l_2| < frac{epsilon}{2} + frac{epsilon}{2} = epsilon, forall x in V_delta(x_0) cap Ssetminus {{x_0}}$$. Since $x_0$ is a cluster point, $|l_1-l_2|$ is arbitrary small (but still non-negative) on a non-empty set. Can you conclude from here? (An extra hint: Suppose $forall epsilon > 0, 0le a < epsilon$, can you prove by contradiction that $a = 0$?)






      share|cite|improve this answer

























        up vote
        0
        down vote



        accepted










        First, the existence of limit at a point (say, $x_0$) does not depend on the value of the function at $x_0$. This is important because, without this idea, limit and continuity become more or less useless.



        Now to show that $f$ has at most one limit as $x to x_0$, we need to show that either the limit does not exist ("zero" limit), or the limit is unique if it exists ("one" limit).



        In other words, we can assume that the limit exists, and let



        $$ lim_{x to x_0} f(x) = l_1$$ and $$ lim_{x to x_0} f(x) = l_2$$. Now we want to show that $l_1 = l_2$. Start from the definition.



        Given $epsilon > 0$, $exists delta_1 > 0$ such that
        $$|f(x)-l_1| < frac{epsilon}{2}, forall x in V_{delta_1}(x_0)cap{S}setminus{{x_0
        }}$$

        Also, $exists delta_2>0$ such that
        $$|f(x)-l_2|<frac{epsilon}{2}, forall x in V_{delta_2}(x_0)cap{S}setminus{{x_0}}$$



        . Now take $delta = min{delta_1, delta_2}$.



        $$|l_1-l_2| = |l_1-f(x)+f(x)-l_2| le |l_1-f(x)|+|f(x)-l_2| < frac{epsilon}{2} + frac{epsilon}{2} = epsilon, forall x in V_delta(x_0) cap Ssetminus {{x_0}}$$. Since $x_0$ is a cluster point, $|l_1-l_2|$ is arbitrary small (but still non-negative) on a non-empty set. Can you conclude from here? (An extra hint: Suppose $forall epsilon > 0, 0le a < epsilon$, can you prove by contradiction that $a = 0$?)






        share|cite|improve this answer























          up vote
          0
          down vote



          accepted







          up vote
          0
          down vote



          accepted






          First, the existence of limit at a point (say, $x_0$) does not depend on the value of the function at $x_0$. This is important because, without this idea, limit and continuity become more or less useless.



          Now to show that $f$ has at most one limit as $x to x_0$, we need to show that either the limit does not exist ("zero" limit), or the limit is unique if it exists ("one" limit).



          In other words, we can assume that the limit exists, and let



          $$ lim_{x to x_0} f(x) = l_1$$ and $$ lim_{x to x_0} f(x) = l_2$$. Now we want to show that $l_1 = l_2$. Start from the definition.



          Given $epsilon > 0$, $exists delta_1 > 0$ such that
          $$|f(x)-l_1| < frac{epsilon}{2}, forall x in V_{delta_1}(x_0)cap{S}setminus{{x_0
          }}$$

          Also, $exists delta_2>0$ such that
          $$|f(x)-l_2|<frac{epsilon}{2}, forall x in V_{delta_2}(x_0)cap{S}setminus{{x_0}}$$



          . Now take $delta = min{delta_1, delta_2}$.



          $$|l_1-l_2| = |l_1-f(x)+f(x)-l_2| le |l_1-f(x)|+|f(x)-l_2| < frac{epsilon}{2} + frac{epsilon}{2} = epsilon, forall x in V_delta(x_0) cap Ssetminus {{x_0}}$$. Since $x_0$ is a cluster point, $|l_1-l_2|$ is arbitrary small (but still non-negative) on a non-empty set. Can you conclude from here? (An extra hint: Suppose $forall epsilon > 0, 0le a < epsilon$, can you prove by contradiction that $a = 0$?)






          share|cite|improve this answer












          First, the existence of limit at a point (say, $x_0$) does not depend on the value of the function at $x_0$. This is important because, without this idea, limit and continuity become more or less useless.



          Now to show that $f$ has at most one limit as $x to x_0$, we need to show that either the limit does not exist ("zero" limit), or the limit is unique if it exists ("one" limit).



          In other words, we can assume that the limit exists, and let



          $$ lim_{x to x_0} f(x) = l_1$$ and $$ lim_{x to x_0} f(x) = l_2$$. Now we want to show that $l_1 = l_2$. Start from the definition.



          Given $epsilon > 0$, $exists delta_1 > 0$ such that
          $$|f(x)-l_1| < frac{epsilon}{2}, forall x in V_{delta_1}(x_0)cap{S}setminus{{x_0
          }}$$

          Also, $exists delta_2>0$ such that
          $$|f(x)-l_2|<frac{epsilon}{2}, forall x in V_{delta_2}(x_0)cap{S}setminus{{x_0}}$$



          . Now take $delta = min{delta_1, delta_2}$.



          $$|l_1-l_2| = |l_1-f(x)+f(x)-l_2| le |l_1-f(x)|+|f(x)-l_2| < frac{epsilon}{2} + frac{epsilon}{2} = epsilon, forall x in V_delta(x_0) cap Ssetminus {{x_0}}$$. Since $x_0$ is a cluster point, $|l_1-l_2|$ is arbitrary small (but still non-negative) on a non-empty set. Can you conclude from here? (An extra hint: Suppose $forall epsilon > 0, 0le a < epsilon$, can you prove by contradiction that $a = 0$?)







          share|cite|improve this answer












          share|cite|improve this answer



          share|cite|improve this answer










          answered Nov 26 at 4:49









          tonychow0929

          24122




          24122






















              up vote
              0
              down vote













              Hint: A really classic way to approach uniqueness questions in analysis is by contradiction. Suppose $f$ had more than one limit (ie, two - say $a$ and $b$). What do you know about $left| a-b right|$? And how might this help you use the definition of a limit?






              share|cite|improve this answer

























                up vote
                0
                down vote













                Hint: A really classic way to approach uniqueness questions in analysis is by contradiction. Suppose $f$ had more than one limit (ie, two - say $a$ and $b$). What do you know about $left| a-b right|$? And how might this help you use the definition of a limit?






                share|cite|improve this answer























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  Hint: A really classic way to approach uniqueness questions in analysis is by contradiction. Suppose $f$ had more than one limit (ie, two - say $a$ and $b$). What do you know about $left| a-b right|$? And how might this help you use the definition of a limit?






                  share|cite|improve this answer












                  Hint: A really classic way to approach uniqueness questions in analysis is by contradiction. Suppose $f$ had more than one limit (ie, two - say $a$ and $b$). What do you know about $left| a-b right|$? And how might this help you use the definition of a limit?







                  share|cite|improve this answer












                  share|cite|improve this answer



                  share|cite|improve this answer










                  answered Nov 26 at 3:18









                  nick

                  353




                  353






























                      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.





                      Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                      Please pay close attention to the following guidance:


                      • 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.


                      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%2f3013530%2fprove-given-x-0-is-a-cluster-point-of-a-set-s-and-fs-to-mathbbr-then%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

                      To store a contact into the json file from server.js file using a class in NodeJS

                      Redirect URL with Chrome Remote Debugging Android Devices

                      Dieringhausen