7

I am currently reading the Algorithm Design Manual, but my mathematical notation has become a little rusty.

What does

"\left( a \ b \right)" LaTeX

mean?

Community
  • 1
  • 1
DanDan
  • 10,462
  • 8
  • 53
  • 69

4 Answers4

12

Binomial coefficient? (also, see combination)

drdaeman
  • 11,159
  • 7
  • 59
  • 104
  • Binomial coefficient is the second one I was going to suggest, but I couldn't remember what it was. I think it's time for me to brush up on my discrete math. – Thomas Owens Jul 27 '09 at 19:37
  • 2
    Not to be confused with the Legendre Symbol http://en.wikipedia.org/wiki/Legendre_symbol – Adam Rosenfield Jul 27 '09 at 19:39
10

It means "n choose k", or in this case, "a choose b". It is a shorthand for the formula a!/(b!((a-b)!)).

Sorry for the many parenthesis, just didn't want amibuity. ! means factorial, 5! = 5*4*3*2*1, etc.

It is used for binomial expansion, and Pascal's Triangle.

agorenst
  • 2,425
  • 14
  • 18
4

Combination is the first thing that comes to mind...but without context, there are probably other meanings for the same notation.

Thomas Owens
  • 114,398
  • 98
  • 311
  • 431
3

Combination.

Sinan Ünür
  • 116,958
  • 15
  • 196
  • 339