Solve the following system of equations: $[x[i-1]-(2-h^2)x[i]+x[i+1]=0, x[1]=1, x[50]-x[49]=h$, where...












0












$begingroup$


This is my attempt at the solution using MuPAD:



$x[1]:=1; h:=0.1; x[50]-x[49]=h$



eqs:= $[x[i-1]-(2-h^2)x[i]+x[i+1]=0; i=2,...,49]$



vars:=$[x[i]; i = 1,...,50]$



numeric::linsolve(eqs,vars);



The problem is that $x[50]$ and $x[49]$ are not defined yet. What is the correct approach here? Do I solve the equation generally and then solve for every term $x[1,...,50]$ individually afterwards? Presumably the general solution will be an equation for each term $x[2,...,50]$. How do I pass the variables $h$ and $x[50]-x[49]$ to the general solution?










share|cite|improve this question











$endgroup$

















    0












    $begingroup$


    This is my attempt at the solution using MuPAD:



    $x[1]:=1; h:=0.1; x[50]-x[49]=h$



    eqs:= $[x[i-1]-(2-h^2)x[i]+x[i+1]=0; i=2,...,49]$



    vars:=$[x[i]; i = 1,...,50]$



    numeric::linsolve(eqs,vars);



    The problem is that $x[50]$ and $x[49]$ are not defined yet. What is the correct approach here? Do I solve the equation generally and then solve for every term $x[1,...,50]$ individually afterwards? Presumably the general solution will be an equation for each term $x[2,...,50]$. How do I pass the variables $h$ and $x[50]-x[49]$ to the general solution?










    share|cite|improve this question











    $endgroup$















      0












      0








      0





      $begingroup$


      This is my attempt at the solution using MuPAD:



      $x[1]:=1; h:=0.1; x[50]-x[49]=h$



      eqs:= $[x[i-1]-(2-h^2)x[i]+x[i+1]=0; i=2,...,49]$



      vars:=$[x[i]; i = 1,...,50]$



      numeric::linsolve(eqs,vars);



      The problem is that $x[50]$ and $x[49]$ are not defined yet. What is the correct approach here? Do I solve the equation generally and then solve for every term $x[1,...,50]$ individually afterwards? Presumably the general solution will be an equation for each term $x[2,...,50]$. How do I pass the variables $h$ and $x[50]-x[49]$ to the general solution?










      share|cite|improve this question











      $endgroup$




      This is my attempt at the solution using MuPAD:



      $x[1]:=1; h:=0.1; x[50]-x[49]=h$



      eqs:= $[x[i-1]-(2-h^2)x[i]+x[i+1]=0; i=2,...,49]$



      vars:=$[x[i]; i = 1,...,50]$



      numeric::linsolve(eqs,vars);



      The problem is that $x[50]$ and $x[49]$ are not defined yet. What is the correct approach here? Do I solve the equation generally and then solve for every term $x[1,...,50]$ individually afterwards? Presumably the general solution will be an equation for each term $x[2,...,50]$. How do I pass the variables $h$ and $x[50]-x[49]$ to the general solution?







      computer-algebra-systems






      share|cite|improve this question















      share|cite|improve this question













      share|cite|improve this question




      share|cite|improve this question








      edited Feb 28 '18 at 18:44









      Lorenzo B.

      1,8402520




      1,8402520










      asked Feb 28 '18 at 18:18









      JensJens

      13




      13






















          1 Answer
          1






          active

          oldest

          votes


















          0












          $begingroup$

          For a problem of this size you can simply generate the system of equations and solve it.
          Here's the Mathematica code to do it:



          h = 1/10;
          eql[0] = Table[x[i - 1] - (2 - h^2) x[i] + x[i + 1] == 0, {i, 2, 49}];
          eql[1] = {x[50] - x[49] == h, x[1] == 1}
          Solve[eql[0]~Join~eql[1], Table[x[i], {i, 1, 50}], Reals]





          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: "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%2f2670951%2fsolve-the-following-system-of-equations-xi-1-2-h2xixi1-0-x1-1%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$

            For a problem of this size you can simply generate the system of equations and solve it.
            Here's the Mathematica code to do it:



            h = 1/10;
            eql[0] = Table[x[i - 1] - (2 - h^2) x[i] + x[i + 1] == 0, {i, 2, 49}];
            eql[1] = {x[50] - x[49] == h, x[1] == 1}
            Solve[eql[0]~Join~eql[1], Table[x[i], {i, 1, 50}], Reals]





            share|cite|improve this answer









            $endgroup$


















              0












              $begingroup$

              For a problem of this size you can simply generate the system of equations and solve it.
              Here's the Mathematica code to do it:



              h = 1/10;
              eql[0] = Table[x[i - 1] - (2 - h^2) x[i] + x[i + 1] == 0, {i, 2, 49}];
              eql[1] = {x[50] - x[49] == h, x[1] == 1}
              Solve[eql[0]~Join~eql[1], Table[x[i], {i, 1, 50}], Reals]





              share|cite|improve this answer









              $endgroup$
















                0












                0








                0





                $begingroup$

                For a problem of this size you can simply generate the system of equations and solve it.
                Here's the Mathematica code to do it:



                h = 1/10;
                eql[0] = Table[x[i - 1] - (2 - h^2) x[i] + x[i + 1] == 0, {i, 2, 49}];
                eql[1] = {x[50] - x[49] == h, x[1] == 1}
                Solve[eql[0]~Join~eql[1], Table[x[i], {i, 1, 50}], Reals]





                share|cite|improve this answer









                $endgroup$



                For a problem of this size you can simply generate the system of equations and solve it.
                Here's the Mathematica code to do it:



                h = 1/10;
                eql[0] = Table[x[i - 1] - (2 - h^2) x[i] + x[i + 1] == 0, {i, 2, 49}];
                eql[1] = {x[50] - x[49] == h, x[1] == 1}
                Solve[eql[0]~Join~eql[1], Table[x[i], {i, 1, 50}], Reals]






                share|cite|improve this answer












                share|cite|improve this answer



                share|cite|improve this answer










                answered Jan 12 at 19:23









                ablmfablmf

                2,54342452




                2,54342452






























                    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%2f2670951%2fsolve-the-following-system-of-equations-xi-1-2-h2xixi1-0-x1-1%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

                    MongoDB - Not Authorized To Execute Command

                    How to fix TextFormField cause rebuild widget in Flutter

                    in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith