Using mathematical induction on $X_n$ within the definition of $X_n$? The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Proving by induction that $| x_1 + x_2 + … + x_n | leq | x_1 | + | x_2| + … + | x_n |$Understanding mathematical induction for divisibilityApplications of mathematical inductionIs mathematical induction necessary in this situation?Well-Ordering and Mathematical InductionSome rather non-traditional forms of mathematical induction.Equivalence between “mathematical induction” and “transfinite induction” for natural numbers?Prove using inductionWhy is Mathematical Induction used to prove solvable inequalities?Difficult Induction Question Using Triginometry and Inequalities

How to test the equality of two Pearson correlation coefficients computed from the same sample?

Can smartphones with the same camera sensor have different image quality?

Would an alien lifeform be able to achieve space travel if lacking in vision?

Why can't wing-mounted spoilers be used to steepen approaches?

Was credit for the black hole image misattributed?

How does ice melt when immersed in water

Did the new image of black hole confirm the general theory of relativity?

Can a 1st-level character have an ability score above 18?

Do working physicists consider Newtonian mechanics to be "falsified"?

Do warforged have souls?

verb not working in beamer even though I use [fragile]

how can a perfect fourth interval be considered either consonant or dissonant?

Can the DM override racial traits?

Make it rain characters

University's motivation for having tenure-track positions

system call string length limit

How is simplicity better than precision and clarity in prose?

Did the UK government pay "millions and millions of dollars" to try to snag Julian Assange?

The variadic template constructor of my class cannot modify my class members, why is that so?

Does the AirPods case need to be around while listening via an iOS Device?

Problems with Ubuntu mount /tmp

Difference between "generating set" and free product?

Why is superheterodyning better than direct conversion?

Arduino Pro Micro - switch off LEDs



Using mathematical induction on $X_n$ within the definition of $X_n$?



The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Proving by induction that $| x_1 + x_2 + … + x_n | leq | x_1 | + | x_2| + … + | x_n |$Understanding mathematical induction for divisibilityApplications of mathematical inductionIs mathematical induction necessary in this situation?Well-Ordering and Mathematical InductionSome rather non-traditional forms of mathematical induction.Equivalence between “mathematical induction” and “transfinite induction” for natural numbers?Prove using inductionWhy is Mathematical Induction used to prove solvable inequalities?Difficult Induction Question Using Triginometry and Inequalities










2












$begingroup$


Assume we have a domain $D$ with a property $phi(x)$ that is either true or false for any $xin D$. Also assume that there is a function $f:Phito Phi$, where $Phi = xin D:phi(x)$.



Consider the following construction:
Let $X_1$ be a set such that for all $xin X_1, phi(x)$ holds. And define:
$$X_n = yin D: exists xin X_n-1, f(x)=y $$



I am trying to prove by mathematical induction that for all $n, X_nsubseteq Phi$. This seems to me to be very obviously true and almost trivial, but I don't know how to actually prove it, since it seems we need the induction step to even define $X_n$. Strictly speaking, $f(x)$ within the definition of $X_n$ is undefined, since we don't know whether for arbitrary $xin X_n-1$, $xin Phi$. So it seems we need to use mathematical induction to prove that $X_nin Phi$ before we can even define $X_n$.



This seems messy, so what should I do to solve this?



EDIT:
Intuitively, if you think of defining $X_n$ as a procedure, we can simply do it like this:



Pseudocode:



i=1
prove X_1 subset of Phi
while true
Define X_i+1 using the fact that X_i is a subset of $Phi$
Prove that X_i+1 is a subset of $Phi$.
i++;


But this would be different from mathematical induction (afaik), and I'm not sure how to formalize it mathematically.










share|cite|improve this question











$endgroup$
















    2












    $begingroup$


    Assume we have a domain $D$ with a property $phi(x)$ that is either true or false for any $xin D$. Also assume that there is a function $f:Phito Phi$, where $Phi = xin D:phi(x)$.



    Consider the following construction:
    Let $X_1$ be a set such that for all $xin X_1, phi(x)$ holds. And define:
    $$X_n = yin D: exists xin X_n-1, f(x)=y $$



    I am trying to prove by mathematical induction that for all $n, X_nsubseteq Phi$. This seems to me to be very obviously true and almost trivial, but I don't know how to actually prove it, since it seems we need the induction step to even define $X_n$. Strictly speaking, $f(x)$ within the definition of $X_n$ is undefined, since we don't know whether for arbitrary $xin X_n-1$, $xin Phi$. So it seems we need to use mathematical induction to prove that $X_nin Phi$ before we can even define $X_n$.



    This seems messy, so what should I do to solve this?



    EDIT:
    Intuitively, if you think of defining $X_n$ as a procedure, we can simply do it like this:



    Pseudocode:



    i=1
    prove X_1 subset of Phi
    while true
    Define X_i+1 using the fact that X_i is a subset of $Phi$
    Prove that X_i+1 is a subset of $Phi$.
    i++;


    But this would be different from mathematical induction (afaik), and I'm not sure how to formalize it mathematically.










    share|cite|improve this question











    $endgroup$














      2












      2








      2





      $begingroup$


      Assume we have a domain $D$ with a property $phi(x)$ that is either true or false for any $xin D$. Also assume that there is a function $f:Phito Phi$, where $Phi = xin D:phi(x)$.



      Consider the following construction:
      Let $X_1$ be a set such that for all $xin X_1, phi(x)$ holds. And define:
      $$X_n = yin D: exists xin X_n-1, f(x)=y $$



      I am trying to prove by mathematical induction that for all $n, X_nsubseteq Phi$. This seems to me to be very obviously true and almost trivial, but I don't know how to actually prove it, since it seems we need the induction step to even define $X_n$. Strictly speaking, $f(x)$ within the definition of $X_n$ is undefined, since we don't know whether for arbitrary $xin X_n-1$, $xin Phi$. So it seems we need to use mathematical induction to prove that $X_nin Phi$ before we can even define $X_n$.



      This seems messy, so what should I do to solve this?



      EDIT:
      Intuitively, if you think of defining $X_n$ as a procedure, we can simply do it like this:



      Pseudocode:



      i=1
      prove X_1 subset of Phi
      while true
      Define X_i+1 using the fact that X_i is a subset of $Phi$
      Prove that X_i+1 is a subset of $Phi$.
      i++;


      But this would be different from mathematical induction (afaik), and I'm not sure how to formalize it mathematically.










      share|cite|improve this question











      $endgroup$




      Assume we have a domain $D$ with a property $phi(x)$ that is either true or false for any $xin D$. Also assume that there is a function $f:Phito Phi$, where $Phi = xin D:phi(x)$.



      Consider the following construction:
      Let $X_1$ be a set such that for all $xin X_1, phi(x)$ holds. And define:
      $$X_n = yin D: exists xin X_n-1, f(x)=y $$



      I am trying to prove by mathematical induction that for all $n, X_nsubseteq Phi$. This seems to me to be very obviously true and almost trivial, but I don't know how to actually prove it, since it seems we need the induction step to even define $X_n$. Strictly speaking, $f(x)$ within the definition of $X_n$ is undefined, since we don't know whether for arbitrary $xin X_n-1$, $xin Phi$. So it seems we need to use mathematical induction to prove that $X_nin Phi$ before we can even define $X_n$.



      This seems messy, so what should I do to solve this?



      EDIT:
      Intuitively, if you think of defining $X_n$ as a procedure, we can simply do it like this:



      Pseudocode:



      i=1
      prove X_1 subset of Phi
      while true
      Define X_i+1 using the fact that X_i is a subset of $Phi$
      Prove that X_i+1 is a subset of $Phi$.
      i++;


      But this would be different from mathematical induction (afaik), and I'm not sure how to formalize it mathematically.







      elementary-set-theory induction






      share|cite|improve this question















      share|cite|improve this question













      share|cite|improve this question




      share|cite|improve this question








      edited Apr 9 at 6:37







      user56834

















      asked Apr 8 at 11:55









      user56834user56834

      3,32521253




      3,32521253




















          1 Answer
          1






          active

          oldest

          votes


















          0












          $begingroup$

          Instead of saying $f(x) = y$ we can rollback to definition of function and write $langle x, yrangle in f$ in definition of $X_n$ - it's well defined for any $x, y$.



          Then we can notice that as $f subset Phi times Phi$, $langle x, yrangle in f$ implies $y in Phi$.






          share|cite|improve this answer








          New contributor




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






          $endgroup$













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



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3179534%2fusing-mathematical-induction-on-x-n-within-the-definition-of-x-n%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0












            $begingroup$

            Instead of saying $f(x) = y$ we can rollback to definition of function and write $langle x, yrangle in f$ in definition of $X_n$ - it's well defined for any $x, y$.



            Then we can notice that as $f subset Phi times Phi$, $langle x, yrangle in f$ implies $y in Phi$.






            share|cite|improve this answer








            New contributor




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






            $endgroup$

















              0












              $begingroup$

              Instead of saying $f(x) = y$ we can rollback to definition of function and write $langle x, yrangle in f$ in definition of $X_n$ - it's well defined for any $x, y$.



              Then we can notice that as $f subset Phi times Phi$, $langle x, yrangle in f$ implies $y in Phi$.






              share|cite|improve this answer








              New contributor




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






              $endgroup$















                0












                0








                0





                $begingroup$

                Instead of saying $f(x) = y$ we can rollback to definition of function and write $langle x, yrangle in f$ in definition of $X_n$ - it's well defined for any $x, y$.



                Then we can notice that as $f subset Phi times Phi$, $langle x, yrangle in f$ implies $y in Phi$.






                share|cite|improve this answer








                New contributor




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






                $endgroup$



                Instead of saying $f(x) = y$ we can rollback to definition of function and write $langle x, yrangle in f$ in definition of $X_n$ - it's well defined for any $x, y$.



                Then we can notice that as $f subset Phi times Phi$, $langle x, yrangle in f$ implies $y in Phi$.







                share|cite|improve this answer








                New contributor




                mihaild 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 answer



                share|cite|improve this answer






                New contributor




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









                answered Apr 8 at 12:04









                mihaildmihaild

                80710




                80710




                New contributor




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





                New contributor





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






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



























                    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%2f3179534%2fusing-mathematical-induction-on-x-n-within-the-definition-of-x-n%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

                    What does it mean to find percent difference when two values are equivalent? The 2019 Stack Overflow Developer Survey Results Are InWhat does “percent of change” mean?Find what percent X is between two numbers?Unable to determine 'original amount' in simple percentage problemsWhat is the correct percent difference formula?How does proportionality hold when quantities are high? And the percentage increase formulaprofit and loss GRE questionProfitability calculationWhat is the difference between $xtimes 0.8$ and $x div 1.2 ? $Finding the percent probability of completing BUDs trainingCalculating Percent Difference with zero and near zero values

                    Why did some early computer designers eschew integers?What register size did early computers use?What other computers used this floating-point format?Why did so many early microcomputers use the MOS 6502 and variants?Why were early computers named “Mark”?Why did expert systems fall?Why were early personal computer monitors not green?When did “Zen” in computer programming become a thing?History of advanced hardwareWere there any working computers using residue number systems?Why did some CPUs use two Read/Write lines, and others just one?

                    How to avoid repetitive long generic constraints in Rust The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceIs it possible to automatically implement a trait for any tuple that is made up of types that all implement the trait?Is there a constraint that restricts my generic method to numeric types?How can foreign key constraints be temporarily disabled using T-SQL?How do I use reflection to call a generic method?How to create a generic array in Java?How to get a class instance of generics type THow is `last` allowed to be called for an Args value?How to implement a trait for a parameterized traitAvoiding PhantomData in a struct to enforce type constraintsIs it possible to return part of a struct by reference?Associated References types as Value Types