You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Math-Numerical/Integer.extension.st
+31Lines changed: 31 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,37 @@ Integer >> gamma [
7
7
^ (self-1) factorial.
8
8
]
9
9
10
+
{ #category : #'*Math-Numerical' }
11
+
Integer>> inverseBinomialCoefficient [
12
+
13
+
" Reverse binomial coefficient. Answer a <Collection> with all n and k such that n take: k = self. Elements in the answered Collection should be read as paired. Each pair represents (n,k) in the binomial coefficient formula.
14
+
See https://math.stackexchange.com/a/103385/205 for details. "
0 commit comments