Combinations - Solving recurrence relation in 2 variables without using generating functions

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











up vote
1
down vote

favorite












I know that there are similar questions here solving 2 variable recurrence and combinations recurrence equation, but both of them use generating functions to solve this. Is there any other way to solve this problem:



$$Psi(n,k) = begincases
0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text if n = 0 text and
k > 0\
1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text if n geq 0 text and
k=0\
Psi(n-1,k) + Psi(n-1,k-1);;text if n > 0 text and k > 0\
0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text otherwise
endcases$$



I know the solution is $binomnk$, but I would like to know a way to solve this without generating functions.







share|cite|improve this question























    up vote
    1
    down vote

    favorite












    I know that there are similar questions here solving 2 variable recurrence and combinations recurrence equation, but both of them use generating functions to solve this. Is there any other way to solve this problem:



    $$Psi(n,k) = begincases
    0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text if n = 0 text and
    k > 0\
    1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text if n geq 0 text and
    k=0\
    Psi(n-1,k) + Psi(n-1,k-1);;text if n > 0 text and k > 0\
    0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text otherwise
    endcases$$



    I know the solution is $binomnk$, but I would like to know a way to solve this without generating functions.







    share|cite|improve this question





















      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      I know that there are similar questions here solving 2 variable recurrence and combinations recurrence equation, but both of them use generating functions to solve this. Is there any other way to solve this problem:



      $$Psi(n,k) = begincases
      0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text if n = 0 text and
      k > 0\
      1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text if n geq 0 text and
      k=0\
      Psi(n-1,k) + Psi(n-1,k-1);;text if n > 0 text and k > 0\
      0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text otherwise
      endcases$$



      I know the solution is $binomnk$, but I would like to know a way to solve this without generating functions.







      share|cite|improve this question











      I know that there are similar questions here solving 2 variable recurrence and combinations recurrence equation, but both of them use generating functions to solve this. Is there any other way to solve this problem:



      $$Psi(n,k) = begincases
      0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text if n = 0 text and
      k > 0\
      1 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text if n geq 0 text and
      k=0\
      Psi(n-1,k) + Psi(n-1,k-1);;text if n > 0 text and k > 0\
      0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;text otherwise
      endcases$$



      I know the solution is $binomnk$, but I would like to know a way to solve this without generating functions.









      share|cite|improve this question










      share|cite|improve this question




      share|cite|improve this question









      asked Jul 20 at 9:31









      pedroth

      215




      215




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          The most natural way to solve this is the following: I'd start by making a table up to $n=5$ or so and then say "Ah, these are just the binomial coefficients". Then I'd set up an induction proof that this is indeed the case.






          share|cite|improve this answer





















          • I like your approach, but I would like one where the mathematician didn't know what are binomial coefficients
            – pedroth
            Jul 20 at 9:59










          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%2f2857461%2fcombinations-solving-recurrence-relation-in-2-variables-without-using-generati%23new-answer', 'question_page');

          );

          Post as a guest






























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote













          The most natural way to solve this is the following: I'd start by making a table up to $n=5$ or so and then say "Ah, these are just the binomial coefficients". Then I'd set up an induction proof that this is indeed the case.






          share|cite|improve this answer





















          • I like your approach, but I would like one where the mathematician didn't know what are binomial coefficients
            – pedroth
            Jul 20 at 9:59














          up vote
          1
          down vote













          The most natural way to solve this is the following: I'd start by making a table up to $n=5$ or so and then say "Ah, these are just the binomial coefficients". Then I'd set up an induction proof that this is indeed the case.






          share|cite|improve this answer





















          • I like your approach, but I would like one where the mathematician didn't know what are binomial coefficients
            – pedroth
            Jul 20 at 9:59












          up vote
          1
          down vote










          up vote
          1
          down vote









          The most natural way to solve this is the following: I'd start by making a table up to $n=5$ or so and then say "Ah, these are just the binomial coefficients". Then I'd set up an induction proof that this is indeed the case.






          share|cite|improve this answer













          The most natural way to solve this is the following: I'd start by making a table up to $n=5$ or so and then say "Ah, these are just the binomial coefficients". Then I'd set up an induction proof that this is indeed the case.







          share|cite|improve this answer













          share|cite|improve this answer



          share|cite|improve this answer











          answered Jul 20 at 9:38









          Christian Blatter

          163k7107306




          163k7107306











          • I like your approach, but I would like one where the mathematician didn't know what are binomial coefficients
            – pedroth
            Jul 20 at 9:59
















          • I like your approach, but I would like one where the mathematician didn't know what are binomial coefficients
            – pedroth
            Jul 20 at 9:59















          I like your approach, but I would like one where the mathematician didn't know what are binomial coefficients
          – pedroth
          Jul 20 at 9:59




          I like your approach, but I would like one where the mathematician didn't know what are binomial coefficients
          – pedroth
          Jul 20 at 9:59












           

          draft saved


          draft discarded


























           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f2857461%2fcombinations-solving-recurrence-relation-in-2-variables-without-using-generati%23new-answer', 'question_page');

          );

          Post as a guest













































































          Comments

          Popular posts from this blog

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

          Color the edges and diagonals of a regular polygon

          Relationship between determinant of matrix and determinant of adjoint?