How to check whether Laguerre polynomials are orthogonal?











up vote
4
down vote

favorite
1












I've got the problem with checking if Laguerre polynomials for n=1,...,10 are orthogonal.



I have to create the list of these polynomials, then create the matrix of integrals from 0 to infinity. Something like:



M=Integrate[LaguerreL[i,x] LaguerreL[j,x] Exp[-x], {x,0,Infinity}] 


And in the end I have to draw the dynamic drawing of these polynomials so that if I choose on graph n, from 0 to 20, the correct polynomial will be drawn with its derivative.










share|improve this question
























  • Related: mathematica.stackexchange.com/questions/155030/…
    – Michael E2
    Nov 29 at 4:44










  • Table[M, {i, 10}, {j, 10}]?
    – Michael E2
    Nov 29 at 4:45










  • I have to integrate by exp(-x)dx instead of dx.
    – Crunchy
    Nov 29 at 4:57






  • 1




    That's not the problem....
    – Michael E2
    Nov 29 at 5:20















up vote
4
down vote

favorite
1












I've got the problem with checking if Laguerre polynomials for n=1,...,10 are orthogonal.



I have to create the list of these polynomials, then create the matrix of integrals from 0 to infinity. Something like:



M=Integrate[LaguerreL[i,x] LaguerreL[j,x] Exp[-x], {x,0,Infinity}] 


And in the end I have to draw the dynamic drawing of these polynomials so that if I choose on graph n, from 0 to 20, the correct polynomial will be drawn with its derivative.










share|improve this question
























  • Related: mathematica.stackexchange.com/questions/155030/…
    – Michael E2
    Nov 29 at 4:44










  • Table[M, {i, 10}, {j, 10}]?
    – Michael E2
    Nov 29 at 4:45










  • I have to integrate by exp(-x)dx instead of dx.
    – Crunchy
    Nov 29 at 4:57






  • 1




    That's not the problem....
    – Michael E2
    Nov 29 at 5:20













up vote
4
down vote

favorite
1









up vote
4
down vote

favorite
1






1





I've got the problem with checking if Laguerre polynomials for n=1,...,10 are orthogonal.



I have to create the list of these polynomials, then create the matrix of integrals from 0 to infinity. Something like:



M=Integrate[LaguerreL[i,x] LaguerreL[j,x] Exp[-x], {x,0,Infinity}] 


And in the end I have to draw the dynamic drawing of these polynomials so that if I choose on graph n, from 0 to 20, the correct polynomial will be drawn with its derivative.










share|improve this question















I've got the problem with checking if Laguerre polynomials for n=1,...,10 are orthogonal.



I have to create the list of these polynomials, then create the matrix of integrals from 0 to infinity. Something like:



M=Integrate[LaguerreL[i,x] LaguerreL[j,x] Exp[-x], {x,0,Infinity}] 


And in the end I have to draw the dynamic drawing of these polynomials so that if I choose on graph n, from 0 to 20, the correct polynomial will be drawn with its derivative.







calculus-and-analysis polynomials homework






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 29 at 16:23









m_goldberg

84k870193




84k870193










asked Nov 29 at 4:17









Crunchy

211




211












  • Related: mathematica.stackexchange.com/questions/155030/…
    – Michael E2
    Nov 29 at 4:44










  • Table[M, {i, 10}, {j, 10}]?
    – Michael E2
    Nov 29 at 4:45










  • I have to integrate by exp(-x)dx instead of dx.
    – Crunchy
    Nov 29 at 4:57






  • 1




    That's not the problem....
    – Michael E2
    Nov 29 at 5:20


















  • Related: mathematica.stackexchange.com/questions/155030/…
    – Michael E2
    Nov 29 at 4:44










  • Table[M, {i, 10}, {j, 10}]?
    – Michael E2
    Nov 29 at 4:45










  • I have to integrate by exp(-x)dx instead of dx.
    – Crunchy
    Nov 29 at 4:57






  • 1




    That's not the problem....
    – Michael E2
    Nov 29 at 5:20
















Related: mathematica.stackexchange.com/questions/155030/…
– Michael E2
Nov 29 at 4:44




Related: mathematica.stackexchange.com/questions/155030/…
– Michael E2
Nov 29 at 4:44












Table[M, {i, 10}, {j, 10}]?
– Michael E2
Nov 29 at 4:45




Table[M, {i, 10}, {j, 10}]?
– Michael E2
Nov 29 at 4:45












I have to integrate by exp(-x)dx instead of dx.
– Crunchy
Nov 29 at 4:57




I have to integrate by exp(-x)dx instead of dx.
– Crunchy
Nov 29 at 4:57




1




1




That's not the problem....
– Michael E2
Nov 29 at 5:20




That's not the problem....
– Michael E2
Nov 29 at 5:20










2 Answers
2






active

oldest

votes

















up vote
6
down vote













Integrate[LaguerreL[i, x] LaguerreL[j, x] Exp[-x], {x, 0, Infinity}, 
Assumptions -> Element[{i, j}, Integers] && j > i > 0]



0




n = 10;
Outer[Integrate[LaguerreL[#, x] LaguerreL[#2, x] Exp[-x], {x, 0, ∞}] &,
Range[n], Range[n]] == IdentityMatrix[n]



True




Manipulate[Show[Plot[Evaluate@LaguerreL[Sort@n, x], {x, 0, 10}, 
PlotLegends -> ("LaguerreL[" <> ToString[#] <> ", x]" & /@ Sort[n]),
PlotRange -> {-15, 15}],
Plot[Evaluate[D[LaguerreL[Sort@n, z], z] /. z -> x], {x, 0, 10},
PlotLegends -> ("D[LaguerreL[" <> ToString[#] <> ", x], x]" & /@ Sort[n]),
PlotStyle -> Dashed]],
{{n, {5, 10, 17}}, Range[0,20], TogglerBar}]


enter image description here






share|improve this answer






























    up vote
    3
    down vote













    Table[
    NIntegrate[LaguerreL[i, x] LaguerreL[j, x] Exp[-x], {x, 0, Infinity}],
    {i, 10},
    {j, 10}
    ] // Chop // Quiet
    MatrixForm@%
    Manipulate[
    Plot[
    {#, D[#, x]} &@LaguerreL[n, x] // Evaluate,
    {x, 0, 10},
    Frame -> True,
    BaseStyle -> {11, FontFamily -> Times},
    PlotLabel -> StringForm["n=``", n]
    ],
    {n, 0, 20, 1, PopupMenu}
    ]



    {{1., 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 1., 0, 0, 0, 0, 0, 0, 0, 0}, {0,
    0, 1., 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 1., 0, 0, 0, 0, 0, 0}, {0,
    0, 0, 0, 1., 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 1., 0, 0, 0, 0}, {0, 0,
    0, 0, 0, 0, 1., 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 1., 0, 0}, {0, 0,
    0, 0, 0, 0, 0, 0, 1., 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 1.}}




    $left(
    begin{array}{cccccccccc}
    1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
    0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
    0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
    0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 \
    0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 \
    0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 \
    0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 \
    0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 \
    0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 \
    0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. \
    end{array}
    right)$






    share|improve this answer





















    • Thank you! :) Can this graph be simply modified? For example, when I increase n, on the graph will be shown graphs 1,2,3 to n, all of them on one graph?
      – Crunchy
      Nov 29 at 6:14










    • @Crunchy Sure, just change Plot[{#, D[#, x]} &@LaguerreL[n, x] to Plot[{#, D[#, x]} &@LaguerreL[Range[0, n], x]. Though, it starts to look a little chaotic even at n=4. At that point, I would go with @kglr's implementation.
      – That Gravity Guy
      Nov 29 at 20:47











    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: "387"
    };
    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: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    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
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmathematica.stackexchange.com%2fquestions%2f186935%2fhow-to-check-whether-laguerre-polynomials-are-orthogonal%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
    6
    down vote













    Integrate[LaguerreL[i, x] LaguerreL[j, x] Exp[-x], {x, 0, Infinity}, 
    Assumptions -> Element[{i, j}, Integers] && j > i > 0]



    0




    n = 10;
    Outer[Integrate[LaguerreL[#, x] LaguerreL[#2, x] Exp[-x], {x, 0, ∞}] &,
    Range[n], Range[n]] == IdentityMatrix[n]



    True




    Manipulate[Show[Plot[Evaluate@LaguerreL[Sort@n, x], {x, 0, 10}, 
    PlotLegends -> ("LaguerreL[" <> ToString[#] <> ", x]" & /@ Sort[n]),
    PlotRange -> {-15, 15}],
    Plot[Evaluate[D[LaguerreL[Sort@n, z], z] /. z -> x], {x, 0, 10},
    PlotLegends -> ("D[LaguerreL[" <> ToString[#] <> ", x], x]" & /@ Sort[n]),
    PlotStyle -> Dashed]],
    {{n, {5, 10, 17}}, Range[0,20], TogglerBar}]


    enter image description here






    share|improve this answer



























      up vote
      6
      down vote













      Integrate[LaguerreL[i, x] LaguerreL[j, x] Exp[-x], {x, 0, Infinity}, 
      Assumptions -> Element[{i, j}, Integers] && j > i > 0]



      0




      n = 10;
      Outer[Integrate[LaguerreL[#, x] LaguerreL[#2, x] Exp[-x], {x, 0, ∞}] &,
      Range[n], Range[n]] == IdentityMatrix[n]



      True




      Manipulate[Show[Plot[Evaluate@LaguerreL[Sort@n, x], {x, 0, 10}, 
      PlotLegends -> ("LaguerreL[" <> ToString[#] <> ", x]" & /@ Sort[n]),
      PlotRange -> {-15, 15}],
      Plot[Evaluate[D[LaguerreL[Sort@n, z], z] /. z -> x], {x, 0, 10},
      PlotLegends -> ("D[LaguerreL[" <> ToString[#] <> ", x], x]" & /@ Sort[n]),
      PlotStyle -> Dashed]],
      {{n, {5, 10, 17}}, Range[0,20], TogglerBar}]


      enter image description here






      share|improve this answer

























        up vote
        6
        down vote










        up vote
        6
        down vote









        Integrate[LaguerreL[i, x] LaguerreL[j, x] Exp[-x], {x, 0, Infinity}, 
        Assumptions -> Element[{i, j}, Integers] && j > i > 0]



        0




        n = 10;
        Outer[Integrate[LaguerreL[#, x] LaguerreL[#2, x] Exp[-x], {x, 0, ∞}] &,
        Range[n], Range[n]] == IdentityMatrix[n]



        True




        Manipulate[Show[Plot[Evaluate@LaguerreL[Sort@n, x], {x, 0, 10}, 
        PlotLegends -> ("LaguerreL[" <> ToString[#] <> ", x]" & /@ Sort[n]),
        PlotRange -> {-15, 15}],
        Plot[Evaluate[D[LaguerreL[Sort@n, z], z] /. z -> x], {x, 0, 10},
        PlotLegends -> ("D[LaguerreL[" <> ToString[#] <> ", x], x]" & /@ Sort[n]),
        PlotStyle -> Dashed]],
        {{n, {5, 10, 17}}, Range[0,20], TogglerBar}]


        enter image description here






        share|improve this answer














        Integrate[LaguerreL[i, x] LaguerreL[j, x] Exp[-x], {x, 0, Infinity}, 
        Assumptions -> Element[{i, j}, Integers] && j > i > 0]



        0




        n = 10;
        Outer[Integrate[LaguerreL[#, x] LaguerreL[#2, x] Exp[-x], {x, 0, ∞}] &,
        Range[n], Range[n]] == IdentityMatrix[n]



        True




        Manipulate[Show[Plot[Evaluate@LaguerreL[Sort@n, x], {x, 0, 10}, 
        PlotLegends -> ("LaguerreL[" <> ToString[#] <> ", x]" & /@ Sort[n]),
        PlotRange -> {-15, 15}],
        Plot[Evaluate[D[LaguerreL[Sort@n, z], z] /. z -> x], {x, 0, 10},
        PlotLegends -> ("D[LaguerreL[" <> ToString[#] <> ", x], x]" & /@ Sort[n]),
        PlotStyle -> Dashed]],
        {{n, {5, 10, 17}}, Range[0,20], TogglerBar}]


        enter image description here







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Nov 29 at 5:26

























        answered Nov 29 at 5:01









        kglr

        175k9197402




        175k9197402






















            up vote
            3
            down vote













            Table[
            NIntegrate[LaguerreL[i, x] LaguerreL[j, x] Exp[-x], {x, 0, Infinity}],
            {i, 10},
            {j, 10}
            ] // Chop // Quiet
            MatrixForm@%
            Manipulate[
            Plot[
            {#, D[#, x]} &@LaguerreL[n, x] // Evaluate,
            {x, 0, 10},
            Frame -> True,
            BaseStyle -> {11, FontFamily -> Times},
            PlotLabel -> StringForm["n=``", n]
            ],
            {n, 0, 20, 1, PopupMenu}
            ]



            {{1., 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 1., 0, 0, 0, 0, 0, 0, 0, 0}, {0,
            0, 1., 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 1., 0, 0, 0, 0, 0, 0}, {0,
            0, 0, 0, 1., 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 1., 0, 0, 0, 0}, {0, 0,
            0, 0, 0, 0, 1., 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 1., 0, 0}, {0, 0,
            0, 0, 0, 0, 0, 0, 1., 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 1.}}




            $left(
            begin{array}{cccccccccc}
            1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. \
            end{array}
            right)$






            share|improve this answer





















            • Thank you! :) Can this graph be simply modified? For example, when I increase n, on the graph will be shown graphs 1,2,3 to n, all of them on one graph?
              – Crunchy
              Nov 29 at 6:14










            • @Crunchy Sure, just change Plot[{#, D[#, x]} &@LaguerreL[n, x] to Plot[{#, D[#, x]} &@LaguerreL[Range[0, n], x]. Though, it starts to look a little chaotic even at n=4. At that point, I would go with @kglr's implementation.
              – That Gravity Guy
              Nov 29 at 20:47















            up vote
            3
            down vote













            Table[
            NIntegrate[LaguerreL[i, x] LaguerreL[j, x] Exp[-x], {x, 0, Infinity}],
            {i, 10},
            {j, 10}
            ] // Chop // Quiet
            MatrixForm@%
            Manipulate[
            Plot[
            {#, D[#, x]} &@LaguerreL[n, x] // Evaluate,
            {x, 0, 10},
            Frame -> True,
            BaseStyle -> {11, FontFamily -> Times},
            PlotLabel -> StringForm["n=``", n]
            ],
            {n, 0, 20, 1, PopupMenu}
            ]



            {{1., 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 1., 0, 0, 0, 0, 0, 0, 0, 0}, {0,
            0, 1., 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 1., 0, 0, 0, 0, 0, 0}, {0,
            0, 0, 0, 1., 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 1., 0, 0, 0, 0}, {0, 0,
            0, 0, 0, 0, 1., 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 1., 0, 0}, {0, 0,
            0, 0, 0, 0, 0, 0, 1., 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 1.}}




            $left(
            begin{array}{cccccccccc}
            1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. \
            end{array}
            right)$






            share|improve this answer





















            • Thank you! :) Can this graph be simply modified? For example, when I increase n, on the graph will be shown graphs 1,2,3 to n, all of them on one graph?
              – Crunchy
              Nov 29 at 6:14










            • @Crunchy Sure, just change Plot[{#, D[#, x]} &@LaguerreL[n, x] to Plot[{#, D[#, x]} &@LaguerreL[Range[0, n], x]. Though, it starts to look a little chaotic even at n=4. At that point, I would go with @kglr's implementation.
              – That Gravity Guy
              Nov 29 at 20:47













            up vote
            3
            down vote










            up vote
            3
            down vote









            Table[
            NIntegrate[LaguerreL[i, x] LaguerreL[j, x] Exp[-x], {x, 0, Infinity}],
            {i, 10},
            {j, 10}
            ] // Chop // Quiet
            MatrixForm@%
            Manipulate[
            Plot[
            {#, D[#, x]} &@LaguerreL[n, x] // Evaluate,
            {x, 0, 10},
            Frame -> True,
            BaseStyle -> {11, FontFamily -> Times},
            PlotLabel -> StringForm["n=``", n]
            ],
            {n, 0, 20, 1, PopupMenu}
            ]



            {{1., 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 1., 0, 0, 0, 0, 0, 0, 0, 0}, {0,
            0, 1., 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 1., 0, 0, 0, 0, 0, 0}, {0,
            0, 0, 0, 1., 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 1., 0, 0, 0, 0}, {0, 0,
            0, 0, 0, 0, 1., 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 1., 0, 0}, {0, 0,
            0, 0, 0, 0, 0, 0, 1., 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 1.}}




            $left(
            begin{array}{cccccccccc}
            1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. \
            end{array}
            right)$






            share|improve this answer












            Table[
            NIntegrate[LaguerreL[i, x] LaguerreL[j, x] Exp[-x], {x, 0, Infinity}],
            {i, 10},
            {j, 10}
            ] // Chop // Quiet
            MatrixForm@%
            Manipulate[
            Plot[
            {#, D[#, x]} &@LaguerreL[n, x] // Evaluate,
            {x, 0, 10},
            Frame -> True,
            BaseStyle -> {11, FontFamily -> Times},
            PlotLabel -> StringForm["n=``", n]
            ],
            {n, 0, 20, 1, PopupMenu}
            ]



            {{1., 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 1., 0, 0, 0, 0, 0, 0, 0, 0}, {0,
            0, 1., 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 1., 0, 0, 0, 0, 0, 0}, {0,
            0, 0, 0, 1., 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 1., 0, 0, 0, 0}, {0, 0,
            0, 0, 0, 0, 1., 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 1., 0, 0}, {0, 0,
            0, 0, 0, 0, 0, 0, 1., 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 1.}}




            $left(
            begin{array}{cccccccccc}
            1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. & 0 \
            0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 0 & 1. \
            end{array}
            right)$







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Nov 29 at 4:57









            That Gravity Guy

            2,1011515




            2,1011515












            • Thank you! :) Can this graph be simply modified? For example, when I increase n, on the graph will be shown graphs 1,2,3 to n, all of them on one graph?
              – Crunchy
              Nov 29 at 6:14










            • @Crunchy Sure, just change Plot[{#, D[#, x]} &@LaguerreL[n, x] to Plot[{#, D[#, x]} &@LaguerreL[Range[0, n], x]. Though, it starts to look a little chaotic even at n=4. At that point, I would go with @kglr's implementation.
              – That Gravity Guy
              Nov 29 at 20:47


















            • Thank you! :) Can this graph be simply modified? For example, when I increase n, on the graph will be shown graphs 1,2,3 to n, all of them on one graph?
              – Crunchy
              Nov 29 at 6:14










            • @Crunchy Sure, just change Plot[{#, D[#, x]} &@LaguerreL[n, x] to Plot[{#, D[#, x]} &@LaguerreL[Range[0, n], x]. Though, it starts to look a little chaotic even at n=4. At that point, I would go with @kglr's implementation.
              – That Gravity Guy
              Nov 29 at 20:47
















            Thank you! :) Can this graph be simply modified? For example, when I increase n, on the graph will be shown graphs 1,2,3 to n, all of them on one graph?
            – Crunchy
            Nov 29 at 6:14




            Thank you! :) Can this graph be simply modified? For example, when I increase n, on the graph will be shown graphs 1,2,3 to n, all of them on one graph?
            – Crunchy
            Nov 29 at 6:14












            @Crunchy Sure, just change Plot[{#, D[#, x]} &@LaguerreL[n, x] to Plot[{#, D[#, x]} &@LaguerreL[Range[0, n], x]. Though, it starts to look a little chaotic even at n=4. At that point, I would go with @kglr's implementation.
            – That Gravity Guy
            Nov 29 at 20:47




            @Crunchy Sure, just change Plot[{#, D[#, x]} &@LaguerreL[n, x] to Plot[{#, D[#, x]} &@LaguerreL[Range[0, n], x]. Though, it starts to look a little chaotic even at n=4. At that point, I would go with @kglr's implementation.
            – That Gravity Guy
            Nov 29 at 20:47


















            draft saved

            draft discarded




















































            Thanks for contributing an answer to Mathematica 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%2fmathematica.stackexchange.com%2fquestions%2f186935%2fhow-to-check-whether-laguerre-polynomials-are-orthogonal%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

            Quarter-circle Tiles

            build a pushdown automaton that recognizes the reverse language of a given pushdown automaton?

            Mont Emei