Difference between revisions of "Manuals/calci/PASCALTRIANGLE"
Jump to navigation
Jump to search
Line 36: | Line 36: | ||
==References== | ==References== | ||
* [http://www.mathsisfun.com/pascals-triangle.html Pascal's Triangle ] | * [http://www.mathsisfun.com/pascals-triangle.html Pascal's Triangle ] | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | [[Z_API_Functions | List of Main Z Functions]] | ||
+ | |||
+ | [[ Z3 | Z3 home ]] |
Revision as of 05:26, 9 March 2017
PASCALTRIANGLE(r)
- is the row number.
Description
- This function gives the Coefficients of the Pascal triangle.
- In , is the row number of the Pascal triangle.
- Pascal triangle is the arrangement of numbers of the Binomial coefficients in a triangular shape.
- It is started with the number at the top in the 1st row.
- Then from the 2nd row each number in the triangle is the sum of the two directly above it.
- The construction is related to the Binomial Coefficients by Pascal's rule is :
. where is the binomial coefficient.
- This function will return the result as error when .
Examples
- 1.=PASCALTRIANGLE(1)
1
- 2.=PASCALTRIANGLE(2)
1 1 1
- 3.=PASCALTRIANGLE(3)
1 1 1 1 2 1
- 4.=PASCALTRIANGLE(0) = NULL
Related Videos
See Also
References