Prove Pascal's Triangle-type Function - Discrete Mathematics

Click For Summary
SUMMARY

The function Pn defined recursively as Pn(x1,...,xn) = Pn-1(x1 + x2, x2 + x3,...,xn-1 + xn) with base case P1(x1) = x1 exhibits a pattern analogous to Pascal's Triangle. The calculations reveal that P2(x1,x2) = x1 + x2, P3(x1,x2,x3) = x1 + 2x2 + x3, and P4(x1,x2,x3,x4) = x1 + 3x2 + 3x3 + x4. To derive a closed formula for Pn, leveraging the binomial theorem is recommended as it provides a foundational connection to the coefficients observed in the recursive structure.

PREREQUISITES
  • Understanding of recursive functions
  • Familiarity with Pascal's Triangle
  • Knowledge of the binomial theorem
  • Basic skills in discrete mathematics
NEXT STEPS
  • Research the binomial theorem and its applications in combinatorics
  • Explore recursive function definitions and their closed forms
  • Study advanced properties of Pascal's Triangle
  • Investigate generating functions for combinatorial sequences
USEFUL FOR

Students and educators in discrete mathematics, mathematicians interested in combinatorial identities, and anyone studying recursive functions and their applications.

yellowsnow
Messages
4
Reaction score
0

Homework Statement



For all nZ+, the function Pn of i variables is defined recursively as follows:
Pn(x1,...,xn) = Pn-1(x1 + x2, x2 + x3,...,xn-1 + xn) and P1(x1) = x1.
Find a closed formula for Pn.

Homework Equations



Pn(x1,...,xn) = Pn-1(x1 + x2, x2 + x3,...,xn-1 + xn) and P1(x1) = x1.

The Attempt at a Solution



So far, I've found it definitely follows a Pascal's Triangle-esque pattern:

P1(x1) = x1
P2(x1,x2) = P1(x1 + x2) = x1 + x2
P3(x1,x2,x3) = P2(x1 + x2, x2 + x3) = P1(x1 + 2x2 + x3) = x1 + 2x2 + x3
P4(x1,x2,x3,x4) = P3(x1 + x2, x2 + x3, x3 + x4) = P2(x1 + 2x2 + x3, x2 + 2x3 + x4) = P1(x1 + 3x2 + 3x3 + x4) = x1 + 3x2 + 3x3 + x4

I know it's very similar to Pascal's triangle, but I'm just not sure how to find a closed form for it.

I'd appreciate any help; thanks!
 
Physics news on Phys.org
That's pascal's triangle, but that also has a lot to do with the binomial theorem. Try using that.
 

Similar threads

  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K
  • · Replies 2 ·
Replies
2
Views
3K
Replies
10
Views
3K
  • · Replies 1 ·
Replies
1
Views
4K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
3K