Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
|
|
@ -0,0 +1,35 @@
|
|||
PASCALMATRIX
|
||||
=LAMBDA(n,
|
||||
LAMBDA(f,
|
||||
LET(
|
||||
ixs, SEQUENCE(n, n, 0, 1),
|
||||
|
||||
f(BINCOEFF)(
|
||||
QUOTIENT(ixs, n)
|
||||
)(
|
||||
MOD(ixs, n)
|
||||
)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
BINCOEFF
|
||||
=LAMBDA(n,
|
||||
LAMBDA(k,
|
||||
IF(n < k,
|
||||
0,
|
||||
QUOTIENT(FACT(n), FACT(k) * FACT(n - k))
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
SYMMETRIC
|
||||
=LAMBDA(f,
|
||||
LAMBDA(a,
|
||||
LAMBDA(b,
|
||||
f(a + b)(b)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
FLIP
|
||||
=LAMBDA(f,
|
||||
LAMBDA(a,
|
||||
LAMBDA(b,
|
||||
f(b)(a)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
ID
|
||||
=LAMBDA(x, x)
|
||||
Loading…
Add table
Add a link
Reference in a new issue