I would have expected this to be easy to find. But, no Ubuntu calculator applications seem to have binomial coefficient function built in.
I know I can just do the formula each time with factorial. But, it would be nice just to have it built into the calculator.
nCr(n;r)=n!÷r!÷(n−r)!
(I recommend to copy and paste the code I provided.)nCr
.nCr(4;2)
to get the output of6
.Speedcrunch has the
ncr
function. Simply typencr(10,4)
.