Chebyshev polynomial: recursive formula error estimate

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
0
down vote

favorite












I am trying to solve Problem 3 & 4 from Numerical methods of Bakhvalov, Zhidkov, Kobelkov from section 2.8 on Chebyshev polynomials.



If in the recursive formula
$$
T_n(x) = 2xT_n-1(x)-T_n-2(x)
$$
each calculation contains a round-off error:
$$
T^*_0=1,quad T_1^*=T_1+delta_1,quad T_n^*(x)=2xT_n-1^*(x) - T_n-2^*(x) + delta_n
$$
then



  1. To develop
    $$
    T_N^*(x)-T_N(x) = sum_k=1^Ndelta_kfracsin((N+1-k)arccosx)sqrt1-x^2
    $$

  2. And
    $$
    |T_N^*(x)-T_N(x)|leq max|delta_k|cdot Ncdot minleftN,frac1sqrt1-x^2right
    $$

With the first problem, by calculating the first few terms I can see that the cumulative round-off is the sum of derivatives divided by the power:
$$
fracT'_11+fracT'_22+cdots+fracT'_NN
$$
and of course the derivative of $T_n(x)$ is
$$
T'_n(x)=nfracsin(narccosx)sqrt1-x^2
$$
So, then I can prove the formula by induction. But I can't claim that I have properly developed this formula.



For the second problem, I can easily prove
$$
|T^*_N(x)-T_N(x)|leq fraccdot Nsqrt1-x^2
$$
since $sin(narccosx)leq 1$. But I can't get
$$
|T^*_N(x)-T_N(x)|leq max|delta_k|cdot N^2.
$$







share|cite|improve this question























    up vote
    0
    down vote

    favorite












    I am trying to solve Problem 3 & 4 from Numerical methods of Bakhvalov, Zhidkov, Kobelkov from section 2.8 on Chebyshev polynomials.



    If in the recursive formula
    $$
    T_n(x) = 2xT_n-1(x)-T_n-2(x)
    $$
    each calculation contains a round-off error:
    $$
    T^*_0=1,quad T_1^*=T_1+delta_1,quad T_n^*(x)=2xT_n-1^*(x) - T_n-2^*(x) + delta_n
    $$
    then



    1. To develop
      $$
      T_N^*(x)-T_N(x) = sum_k=1^Ndelta_kfracsin((N+1-k)arccosx)sqrt1-x^2
      $$

    2. And
      $$
      |T_N^*(x)-T_N(x)|leq max|delta_k|cdot Ncdot minleftN,frac1sqrt1-x^2right
      $$

    With the first problem, by calculating the first few terms I can see that the cumulative round-off is the sum of derivatives divided by the power:
    $$
    fracT'_11+fracT'_22+cdots+fracT'_NN
    $$
    and of course the derivative of $T_n(x)$ is
    $$
    T'_n(x)=nfracsin(narccosx)sqrt1-x^2
    $$
    So, then I can prove the formula by induction. But I can't claim that I have properly developed this formula.



    For the second problem, I can easily prove
    $$
    |T^*_N(x)-T_N(x)|leq fraccdot Nsqrt1-x^2
    $$
    since $sin(narccosx)leq 1$. But I can't get
    $$
    |T^*_N(x)-T_N(x)|leq max|delta_k|cdot N^2.
    $$







    share|cite|improve this question





















      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      I am trying to solve Problem 3 & 4 from Numerical methods of Bakhvalov, Zhidkov, Kobelkov from section 2.8 on Chebyshev polynomials.



      If in the recursive formula
      $$
      T_n(x) = 2xT_n-1(x)-T_n-2(x)
      $$
      each calculation contains a round-off error:
      $$
      T^*_0=1,quad T_1^*=T_1+delta_1,quad T_n^*(x)=2xT_n-1^*(x) - T_n-2^*(x) + delta_n
      $$
      then



      1. To develop
        $$
        T_N^*(x)-T_N(x) = sum_k=1^Ndelta_kfracsin((N+1-k)arccosx)sqrt1-x^2
        $$

      2. And
        $$
        |T_N^*(x)-T_N(x)|leq max|delta_k|cdot Ncdot minleftN,frac1sqrt1-x^2right
        $$

      With the first problem, by calculating the first few terms I can see that the cumulative round-off is the sum of derivatives divided by the power:
      $$
      fracT'_11+fracT'_22+cdots+fracT'_NN
      $$
      and of course the derivative of $T_n(x)$ is
      $$
      T'_n(x)=nfracsin(narccosx)sqrt1-x^2
      $$
      So, then I can prove the formula by induction. But I can't claim that I have properly developed this formula.



      For the second problem, I can easily prove
      $$
      |T^*_N(x)-T_N(x)|leq fraccdot Nsqrt1-x^2
      $$
      since $sin(narccosx)leq 1$. But I can't get
      $$
      |T^*_N(x)-T_N(x)|leq max|delta_k|cdot N^2.
      $$







      share|cite|improve this question











      I am trying to solve Problem 3 & 4 from Numerical methods of Bakhvalov, Zhidkov, Kobelkov from section 2.8 on Chebyshev polynomials.



      If in the recursive formula
      $$
      T_n(x) = 2xT_n-1(x)-T_n-2(x)
      $$
      each calculation contains a round-off error:
      $$
      T^*_0=1,quad T_1^*=T_1+delta_1,quad T_n^*(x)=2xT_n-1^*(x) - T_n-2^*(x) + delta_n
      $$
      then



      1. To develop
        $$
        T_N^*(x)-T_N(x) = sum_k=1^Ndelta_kfracsin((N+1-k)arccosx)sqrt1-x^2
        $$

      2. And
        $$
        |T_N^*(x)-T_N(x)|leq max|delta_k|cdot Ncdot minleftN,frac1sqrt1-x^2right
        $$

      With the first problem, by calculating the first few terms I can see that the cumulative round-off is the sum of derivatives divided by the power:
      $$
      fracT'_11+fracT'_22+cdots+fracT'_NN
      $$
      and of course the derivative of $T_n(x)$ is
      $$
      T'_n(x)=nfracsin(narccosx)sqrt1-x^2
      $$
      So, then I can prove the formula by induction. But I can't claim that I have properly developed this formula.



      For the second problem, I can easily prove
      $$
      |T^*_N(x)-T_N(x)|leq fraccdot Nsqrt1-x^2
      $$
      since $sin(narccosx)leq 1$. But I can't get
      $$
      |T^*_N(x)-T_N(x)|leq max|delta_k|cdot N^2.
      $$









      share|cite|improve this question










      share|cite|improve this question




      share|cite|improve this question









      asked Jul 31 at 15:29









      mobiuseng

      23619




      23619

























          active

          oldest

          votes











          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: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          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%2f2868180%2fchebyshev-polynomial-recursive-formula-error-estimate%23new-answer', 'question_page');

          );

          Post as a guest



































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes










           

          draft saved


          draft discarded


























           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2868180%2fchebyshev-polynomial-recursive-formula-error-estimate%23new-answer', 'question_page');

          );

          Post as a guest













































































          Comments

          Popular posts from this blog

          Relationship between determinant of matrix and determinant of adjoint?

          Color the edges and diagonals of a regular polygon

          What is the equation of a 3D cone with generalised tilt?