Ask Your Question
2

Quantum binomials

asked 2010-08-19 17:14:06 +0200

BWW gravatar image

updated 2015-07-31 18:02:00 +0200

FrédéricC gravatar image

What is the difference between q.analogues.q_binomial(n,k) and gaussian_binomial(n,k)? Superficially they seem to be the same.

edit retag flag offensive close merge delete

Comments

What is "qbinomial" or "q.analgoues"? I can't find anything like that. Can you post a complete example to make this question easier to answer?

William Stein gravatar imageWilliam Stein ( 2010-08-19 17:34:58 +0200 )edit

OK, I was thrown off by underscores getting rendered in a weird way.

William Stein gravatar imageWilliam Stein ( 2010-08-19 17:35:43 +0200 )edit

1 Answer

Sort by » oldest newest most voted
4

answered 2010-08-19 17:33:23 +0200

Jason Bandlow gravatar image

updated 2011-01-03 22:37:58 +0200

kcrisman gravatar image

gaussian_binomial is faster, for one:

sage: %timeit a=q_analogues.q_binomial(20,10)
25 loops, best of 3: 8.45 ms per loop
sage: %timeit a=gaussian_binomial(20,10)
625 loops, best of 3: 1.52 ms per loop

Looking at the code makes me think that gaussian_binomial is strictly better than q_binomial, and the latter should be made an alias for the former. But perhaps I'm missing something.

edit flag offensive delete link more

Comments

What namespace is q_analogues in?

ccanonc gravatar imageccanonc ( 2010-08-19 17:36:35 +0200 )edit

What is this q_analogues? For people who want to try the above, you have to first type sage: import sage.combinat.q_analogues as q_analogues

William Stein gravatar imageWilliam Stein ( 2010-08-19 17:37:00 +0200 )edit

Oops, yes, i forgot to include the import statement. Thanks, William.

Jason Bandlow gravatar imageJason Bandlow ( 2010-08-19 17:38:46 +0200 )edit

The various functions implementing this functionality were unified at:

slelievre gravatar imageslelievre ( 2020-04-28 16:02:56 +0200 )edit

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2010-08-19 17:14:06 +0200

Seen: 349 times

Last updated: Jan 03 '11