View source: R/pascal.matrix.R
pascal.matrix | R Documentation |
This function returns an n by n Pascal matrix.
pascal.matrix(n)
n |
Order of the matrix |
In mathematics, particularly matrix theory and combinatorics, the Pascal matrix is a lower triangular matrix with binomial coefficients in the rows. It is easily obtained by performing an LU decomposition on the symmetric Pascal matrix of the same order and returning the lower triangular matrix.
An order n matrix.
If the argument n is not a positive integer, the function presents an error message and stops.
Frederick Novomestky fnovomes@poly.edu
Aceto, L. and D. Trigiante, (2001). Matrices of Pascal and Other Greats, American Mathematical Monthly, March 2001, 232-245.
Call, G. S. and D. J. Velleman, (1993). Pascal's matrices, American Mathematical Monthly, April 1993, 100, 372-376.
Edelman, A. and G. Strang, (2004). Pascal Matrices, American Mathematical Monthly, 111(3), 361-385.
lu.decomposition
,
symmetric.pascal.matrix
P <- pascal.matrix( 4 ) print( P )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.