Proof by induction, inductive step problem












0














Prove by induction:



$$sum_{i=0}^n 3^i =frac {1}{2} (3^{n+1}-1)$$



Now, i know how to do the first step and i understand it but then i have a problem with the second step which is showing that its true for n+1.



My question is:



Is this notation corect:



$$sum_{i=0}^{n+1} 3^i =frac {1}{2} (3^{n+2}-1)$$
Which of these is corect and why?
$$sum_{i=0}^{n+1} 3^i =sum_{i=0}^{n} 3^i+n+1$$
or
$$sum_{i=0}^{n+1} 3^i =sum_{i=0}^{n} 3^{n+1}$$










share|cite|improve this question







New contributor




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

























    0














    Prove by induction:



    $$sum_{i=0}^n 3^i =frac {1}{2} (3^{n+1}-1)$$



    Now, i know how to do the first step and i understand it but then i have a problem with the second step which is showing that its true for n+1.



    My question is:



    Is this notation corect:



    $$sum_{i=0}^{n+1} 3^i =frac {1}{2} (3^{n+2}-1)$$
    Which of these is corect and why?
    $$sum_{i=0}^{n+1} 3^i =sum_{i=0}^{n} 3^i+n+1$$
    or
    $$sum_{i=0}^{n+1} 3^i =sum_{i=0}^{n} 3^{n+1}$$










    share|cite|improve this question







    New contributor




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























      0












      0








      0







      Prove by induction:



      $$sum_{i=0}^n 3^i =frac {1}{2} (3^{n+1}-1)$$



      Now, i know how to do the first step and i understand it but then i have a problem with the second step which is showing that its true for n+1.



      My question is:



      Is this notation corect:



      $$sum_{i=0}^{n+1} 3^i =frac {1}{2} (3^{n+2}-1)$$
      Which of these is corect and why?
      $$sum_{i=0}^{n+1} 3^i =sum_{i=0}^{n} 3^i+n+1$$
      or
      $$sum_{i=0}^{n+1} 3^i =sum_{i=0}^{n} 3^{n+1}$$










      share|cite|improve this question







      New contributor




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











      Prove by induction:



      $$sum_{i=0}^n 3^i =frac {1}{2} (3^{n+1}-1)$$



      Now, i know how to do the first step and i understand it but then i have a problem with the second step which is showing that its true for n+1.



      My question is:



      Is this notation corect:



      $$sum_{i=0}^{n+1} 3^i =frac {1}{2} (3^{n+2}-1)$$
      Which of these is corect and why?
      $$sum_{i=0}^{n+1} 3^i =sum_{i=0}^{n} 3^i+n+1$$
      or
      $$sum_{i=0}^{n+1} 3^i =sum_{i=0}^{n} 3^{n+1}$$







      proof-explanation






      share|cite|improve this question







      New contributor




      mBart 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




      mBart 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






      New contributor




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









      asked Jan 4 at 20:41









      mBartmBart

      82




      82




      New contributor




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





      New contributor





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






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






















          2 Answers
          2






          active

          oldest

          votes


















          2














          Neither of those is correct, but the first one is closer. What you want to say is
          $$sum_{i=0}^{n+1}3^{i}=sum_{i=0}^{n}3^{i}+3^{n+1}$$
          since $3^{n+1}$ is the extra term missing from the sum on the right hand side. To complete the proof, the induction hypothesis implies that the right hand side is
          $$frac{1}{2}(3^{n+1}-1)+3^{n+1}=frac{3}{2}cdot3^{n+1}-frac{1}{2}=frac{1}{2}cdot 3^{n+2}-frac{1}{2}=frac{1}{2}(3^{n+2}-1)$$






          share|cite|improve this answer





























            0














            Notation looks good.



            Your base case is:



            $$sum_{i=0}^0{3^i}=3^0=1$$
            $$frac12(3^1-1)=frac12(2)=1$$
            so true for $n=0$



            Inductive Step:



            Assume the statement true for $n=k$, that is:



            $$sum_{i=0}^k{3^i}=frac12(3^{k+1}-1)$$
            Then show for $n=k+1$. We use that:



            $$sum_{i=0}^{k+1}{3^i}=sum_{i=0}^{k}{3^i}+3^{k+1}$$
            This is the correct expansion of that sum as opposed to what you suggested. We achieve this by finding the $(k+1)$th term of the sum and adding it to the summation to $k$ terms.



            So you need to show that:



            $$frac12(3^{k+1}-1)+3^{k+1}=frac12(3^{k+2}-1)$$






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


              }
              });






              mBart 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%2fmath.stackexchange.com%2fquestions%2f3062086%2fproof-by-induction-inductive-step-problem%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














              Neither of those is correct, but the first one is closer. What you want to say is
              $$sum_{i=0}^{n+1}3^{i}=sum_{i=0}^{n}3^{i}+3^{n+1}$$
              since $3^{n+1}$ is the extra term missing from the sum on the right hand side. To complete the proof, the induction hypothesis implies that the right hand side is
              $$frac{1}{2}(3^{n+1}-1)+3^{n+1}=frac{3}{2}cdot3^{n+1}-frac{1}{2}=frac{1}{2}cdot 3^{n+2}-frac{1}{2}=frac{1}{2}(3^{n+2}-1)$$






              share|cite|improve this answer


























                2














                Neither of those is correct, but the first one is closer. What you want to say is
                $$sum_{i=0}^{n+1}3^{i}=sum_{i=0}^{n}3^{i}+3^{n+1}$$
                since $3^{n+1}$ is the extra term missing from the sum on the right hand side. To complete the proof, the induction hypothesis implies that the right hand side is
                $$frac{1}{2}(3^{n+1}-1)+3^{n+1}=frac{3}{2}cdot3^{n+1}-frac{1}{2}=frac{1}{2}cdot 3^{n+2}-frac{1}{2}=frac{1}{2}(3^{n+2}-1)$$






                share|cite|improve this answer
























                  2












                  2








                  2






                  Neither of those is correct, but the first one is closer. What you want to say is
                  $$sum_{i=0}^{n+1}3^{i}=sum_{i=0}^{n}3^{i}+3^{n+1}$$
                  since $3^{n+1}$ is the extra term missing from the sum on the right hand side. To complete the proof, the induction hypothesis implies that the right hand side is
                  $$frac{1}{2}(3^{n+1}-1)+3^{n+1}=frac{3}{2}cdot3^{n+1}-frac{1}{2}=frac{1}{2}cdot 3^{n+2}-frac{1}{2}=frac{1}{2}(3^{n+2}-1)$$






                  share|cite|improve this answer












                  Neither of those is correct, but the first one is closer. What you want to say is
                  $$sum_{i=0}^{n+1}3^{i}=sum_{i=0}^{n}3^{i}+3^{n+1}$$
                  since $3^{n+1}$ is the extra term missing from the sum on the right hand side. To complete the proof, the induction hypothesis implies that the right hand side is
                  $$frac{1}{2}(3^{n+1}-1)+3^{n+1}=frac{3}{2}cdot3^{n+1}-frac{1}{2}=frac{1}{2}cdot 3^{n+2}-frac{1}{2}=frac{1}{2}(3^{n+2}-1)$$







                  share|cite|improve this answer












                  share|cite|improve this answer



                  share|cite|improve this answer










                  answered Jan 4 at 20:50









                  pwerthpwerth

                  1,977413




                  1,977413























                      0














                      Notation looks good.



                      Your base case is:



                      $$sum_{i=0}^0{3^i}=3^0=1$$
                      $$frac12(3^1-1)=frac12(2)=1$$
                      so true for $n=0$



                      Inductive Step:



                      Assume the statement true for $n=k$, that is:



                      $$sum_{i=0}^k{3^i}=frac12(3^{k+1}-1)$$
                      Then show for $n=k+1$. We use that:



                      $$sum_{i=0}^{k+1}{3^i}=sum_{i=0}^{k}{3^i}+3^{k+1}$$
                      This is the correct expansion of that sum as opposed to what you suggested. We achieve this by finding the $(k+1)$th term of the sum and adding it to the summation to $k$ terms.



                      So you need to show that:



                      $$frac12(3^{k+1}-1)+3^{k+1}=frac12(3^{k+2}-1)$$






                      share|cite|improve this answer


























                        0














                        Notation looks good.



                        Your base case is:



                        $$sum_{i=0}^0{3^i}=3^0=1$$
                        $$frac12(3^1-1)=frac12(2)=1$$
                        so true for $n=0$



                        Inductive Step:



                        Assume the statement true for $n=k$, that is:



                        $$sum_{i=0}^k{3^i}=frac12(3^{k+1}-1)$$
                        Then show for $n=k+1$. We use that:



                        $$sum_{i=0}^{k+1}{3^i}=sum_{i=0}^{k}{3^i}+3^{k+1}$$
                        This is the correct expansion of that sum as opposed to what you suggested. We achieve this by finding the $(k+1)$th term of the sum and adding it to the summation to $k$ terms.



                        So you need to show that:



                        $$frac12(3^{k+1}-1)+3^{k+1}=frac12(3^{k+2}-1)$$






                        share|cite|improve this answer
























                          0












                          0








                          0






                          Notation looks good.



                          Your base case is:



                          $$sum_{i=0}^0{3^i}=3^0=1$$
                          $$frac12(3^1-1)=frac12(2)=1$$
                          so true for $n=0$



                          Inductive Step:



                          Assume the statement true for $n=k$, that is:



                          $$sum_{i=0}^k{3^i}=frac12(3^{k+1}-1)$$
                          Then show for $n=k+1$. We use that:



                          $$sum_{i=0}^{k+1}{3^i}=sum_{i=0}^{k}{3^i}+3^{k+1}$$
                          This is the correct expansion of that sum as opposed to what you suggested. We achieve this by finding the $(k+1)$th term of the sum and adding it to the summation to $k$ terms.



                          So you need to show that:



                          $$frac12(3^{k+1}-1)+3^{k+1}=frac12(3^{k+2}-1)$$






                          share|cite|improve this answer












                          Notation looks good.



                          Your base case is:



                          $$sum_{i=0}^0{3^i}=3^0=1$$
                          $$frac12(3^1-1)=frac12(2)=1$$
                          so true for $n=0$



                          Inductive Step:



                          Assume the statement true for $n=k$, that is:



                          $$sum_{i=0}^k{3^i}=frac12(3^{k+1}-1)$$
                          Then show for $n=k+1$. We use that:



                          $$sum_{i=0}^{k+1}{3^i}=sum_{i=0}^{k}{3^i}+3^{k+1}$$
                          This is the correct expansion of that sum as opposed to what you suggested. We achieve this by finding the $(k+1)$th term of the sum and adding it to the summation to $k$ terms.



                          So you need to show that:



                          $$frac12(3^{k+1}-1)+3^{k+1}=frac12(3^{k+2}-1)$$







                          share|cite|improve this answer












                          share|cite|improve this answer



                          share|cite|improve this answer










                          answered Jan 4 at 20:52









                          Rhys HughesRhys Hughes

                          5,1071427




                          5,1071427






















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










                              draft saved

                              draft discarded


















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













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












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
















                              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%2f3062086%2fproof-by-induction-inductive-step-problem%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

                              An IMO inspired problem

                              Management

                              Investment