Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
1k views

Binomial test in Python for very large numbers

I need to do a binomial test in Python that allows calculation for 'n' numbers of the order of 10000. I have implemented a quick binomial_test function using scipy.misc.comb, however, it is pretty ...
4
votes
2answers
487 views

Binomial Coefficient using Tail Recursion in LISP

I'm a Computer Science student starting to learn LISP. I have been said to program a function to find C(n,k) using tail recursion, and I would greatly appreciate your help. I have reached this: ...
2
votes
5answers
401 views

Binomial coefficient

'Simple' question, what is the fastest way to calculate the binomial coefficient? - Some threaded algorithm? I'm looking for hints :) - not implementations :)
2
votes
5answers
713 views

What is a good way to implement choose notation in Java?

... preferably in Java. Here is what I have: //x choose y public static double choose(int x, int y) { if (y < 0 || y > x) return 0; if (y == 0 || y == x) return 1; double answer = 1; for ...
1
vote
6answers
564 views

How would you write this algorithm for large combinations in the most compact way?

The number of combinations of k items which can be retrieved from N items is described by the following formula. N! c = ___________________ (k! * (N - k)!) An example would ...
0
votes
0answers
46 views

Binomial coefficient for real values

I'm looking for an efficient Java implementation of Binomial coefficients ( choose(n,k) ) defined for all real numbers n and integers k, ie defined as: $\left(\begin{array}{c} N\\ k ...
0
votes
3answers
98 views

Calculating the highest possible damage achievable using 6 items from a pool of ~25

I am writing an app in javascript to try to figure out item builds for characters in a video game. There are about 25 top-tier items, and you can carry 6 at a time. They have very different effects, ...
0
votes
2answers
188 views

Multinomial sets

I'm having a problem figuring out this problem, it is similar to combining sets of non-unique letters, but is slightly different. Let k, m, and n be positive integers. We have nm balls, m colors, n ...
0
votes
1answer
152 views

2 variables in an array

I am trying to create a function in MATLAB which will expand a bracket to the power of n, where n is a natural number. This is what I have so far: function expandb = expandb(x,y,n) z = ...
0
votes
2answers
385 views

Binomial coefficient

I've been looking around trying to find a simple binomial coefficient algorithm, to no avail. The problem is the language I'm using for class is a bit... odd. A lot of it is using Yacc and Lex. ...
0
votes
7answers
234 views

Double-checked locking for growable array of binomial coefficients

I'm trying to use double-checked locking to maintain an array of binomial coefficients, but I read recently that double-checked locking doesn't work. Efficiency is extremely important so using ...
-3
votes
1answer
147 views

equivalent function but different values O.o

I have 2 function, but for the same input a=5 und b=6 different values -.- why? f1: ...
-5
votes
1answer
60 views

coefficient using binomial theorem [closed]

Can someone please help me to find the coefficient of x^6 using the binomial theorem in the expansion of (2-3x+x^2)(2x^2+3)^8 Thanks!