Question

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?

Was it helpful?

Solution

OTHER TIPS

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.

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

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top