Pascal's triangle: Difference between revisions

m
m (→‎explanation: add indents)
m (→‎explanation: indents)
Line 487:
 
So, for example, the number of ways to choose a poker hand (5 cards from the deck of 52):
<lang j> 5!52
2598960</lang>
 
So <code>!</code> is the mathematical choose function. What of <code>/~@i.</code>? Well, you can think of <code>/~</code> as "table of" and <code>@i.</code> "the first N non-negative integers (i.e. 0 .. N-1)".
892

edits