Another Combinations Triangle?

We all know pascal's triangle, right? It's a triangle formed by adding up the two numbers above it. The values it gives form the basis for the famous formula for combinations ->

\( \dbinom{n}{k} = \frac{n!}{k!(n-k)!} \)

So what if we made another type of triangle formed by adding up the three numbers above it?

I was contemplating this and have two questions for you:

1. Using the same notation as for Pascal's Triangle , can you make a formula that will take two numbers (r, c), where r is the Row and c is the Column and output the number that appears there in this triangle?

(For example, the 7 in the picture appears at (3,3))

2. Does this triangle represent anything relating to combinations/algebra? Does it have any practical applications?

#Combinatorics

Note by Alex Li
5 years ago

No vote yet
1 vote

  Easy Math Editor

This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.

When posting on Brilliant:

  • Use the emojis to react to an explanation, whether you're congratulating a job well done , or just really confused .
  • Ask specific questions about the challenge or the steps in somebody's explanation. Well-posed questions can add a lot to the discussion, but posting "I don't understand!" doesn't help anyone.
  • Try to contribute something new to the discussion, whether it is an extension, generalization or other idea related to the challenge.
  • Stay on topic — we're all here to learn more about math and science, not to hear about your favorite get-rich-quick scheme or current world events.

MarkdownAppears as
*italics* or _italics_ italics
**bold** or __bold__ bold

- bulleted
- list

  • bulleted
  • list

1. numbered
2. list

  1. numbered
  2. list
Note: you must add a full line of space before and after lists for them to show up correctly
paragraph 1

paragraph 2

paragraph 1

paragraph 2

[example link](https://brilliant.org)example link
> This is a quote
This is a quote
    # I indented these lines
    # 4 spaces, and now they show
    # up as a code block.

    print "hello world"
# I indented these lines
# 4 spaces, and now they show
# up as a code block.

print "hello world"
MathAppears as
Remember to wrap math in \( ... \) or \[ ... \] to ensure proper formatting.
2 \times 3 2×3 2 \times 3
2^{34} 234 2^{34}
a_{i-1} ai1 a_{i-1}
\frac{2}{3} 23 \frac{2}{3}
\sqrt{2} 2 \sqrt{2}
\sum_{i=1}^3 i=13 \sum_{i=1}^3
\sin \theta sinθ \sin \theta
\boxed{123} 123 \boxed{123}

Comments

One of the reasons Pascal's Triangle relates to combinatorics, is that we add two adjacent numbers to get the next. For example, in the row, "14641", the first 4 represents how many ways to choose one person out of 4, and the 6 represents how many ways to choose 2 people out of 4. The first 10 in the next row represents how many ways to choose 2 people out of 5. This makes sense, because whenever we choose a combination of 5 people, either 1 or 2 of the first 4 must be chosen, and the last one is implied.

I will attempt to apply similar ideas/reasoning for this version of Pascal's Triangle. However, I do not think this relates to combinatorics because every person can be in or out, making just 2 possibilities. However, as we add 3 numbers here, there should be 3 cases. Maybe if we invent a new kind of "choose", where (na,b)n\choose{a,b} is the number of ways to make a group of size aa and size bb from a large group of size nn???

Clive Chen - 4 years, 12 months ago

Log in to reply

I do not think you really need 3 different numbers in the new invented "Choose", since you can still base it off of rows and columns. It's not a 3D structure, after all. I considered this idea but it did not seem to work at all. I'm starting to think that it doesn't represent anything at all, and I really don't know how to go about approaching part 1 since any (simple) Pascal's triangle formula proof uses logic that it gets based on the results it produces.

Alex Li - 4 years, 10 months ago

2) Yes. Think about why Pascal's triangle represents coefficients of (x+1)n (x+1)^n . The triangle that you created are the coefficients of some similar expression.

1) See above.

Calvin Lin Staff - 4 years, 12 months ago

Log in to reply

@Calvin Lin. I inductively figured it was (x^2+x+1)^n but what are the applications of this?

Sal Gard - 4 years, 10 months ago

@Alex Li. It appears to be the coefficients of (x^2+x+1)^n.

Sal Gard - 4 years, 10 months ago

Log in to reply

Oh, I figured that out thanks to Calvin, but I'm more curious about if these numbers could represent some sort of scenario that could be written in a sentence, like "number of ways to choose r marbles from a bag when c are identical" (though that obviously doesn't work) The answer I mostly want to know is if there is a formula to produce the numbers.

Alex Li - 4 years, 10 months ago

So I reattempted this problem and I now have a slightly satisfying result.

Consider row r and column 0. Clearly, there is only 1 solution.

Now, consider row r and column 1. Again, there are r solutions. But why? If you think about the paths to get to this point, they are all downwards except for one point at which it is to the right. There are exactly r different places that this can happen, so there are (n1)\dbinom{n}{1} = n ways.

Next, consider row r and column 2. By the last argument, there are (n2) n \choose 2 ways. But you could also go left once, so you have to add (n1) n \choose 1 .

Now, for row r, column 3. There are (n2) n \choose 2 ways for down-down-down, and (n1) n \choose 1 for down-left. However, you could also go left-down, so we multiply by 2, or (21) 2 \choose 1

Continuing, we find a pattern.

i=0floor(r/2)+1(nri)(rii)\sum_{i=0}^{floor(r/2)+1} \dbinom{n}{r-i} * \dbinom{r-i}{i} =

i=0floor(r/2)+1n!/((ri)!(nr+i)!(ri)!/((r2i)!i!)\sum_{i=0}^{floor(r/2)+1} n!/((r-i)!(n-r+i)! * (r-i)!/((r-2i)!i!) =

i=0floor(r/2)+1n!/((nr+i)!(r2i)!i!)\sum_{i=0}^{floor(r/2)+1} n!/((n-r+i)!(r-2i)!i!) =

OtherCombinationsTriangle(n,r)

That's the furthest I've got to simplifying it. Can anyone do better?

Alex Li - 4 years, 5 months ago

Log in to reply

Seeing that they are the coefficients of (x2+x+1)n (x^2 + x + 1)^n is interesting in itself. There is a lot of literature on the trinomial coefficients, so that might be a way to learn about them.

Unfortunately, I do not think there is necessarily a "simple" expression for them.

Calvin Lin Staff - 4 years, 5 months ago
×

Problem Loading...

Note Loading...

Set Loading...