Pascals Triangle

441 viewsMathematicsOther

How can i find all of the numbers in a certain row of pascals triangle, for this example lets say the 11th row, without having to draw out the entire triangle?

In: Mathematics

6 Answers

Anonymous 0 Comments

Use the formula for binomial coefficients, usually written as an n (row of the triangle) over a k (“column” in that row) with parentheses around. The first row of the triangle is n=0 and the first entry in each row is k=0, so if you’re thinking about the literal 11th row in the triangle, you would actually want to calculate binomial(10, k) for k from 0 to 10.

You are viewing 1 out of 6 answers, click here to view all answers.