+1 vote
in General IT Tips by (56.8k points)
I need to write the binomial coefficient formula in a latex document. Can I get the latex code for it?

1 Answer

+2 votes
by (71.8k points)
selected by
 
Best answer

You can use \binom and \frac from the amsmath package to write the binomial coefficient expression.

Here is an example:

\documentclass{article}

\usepackage{amsmath}

\begin{document}

\[

    \binom{n}{k} = \frac{n!}{k!(n-k)!}

\]

\end{document}

The above latex code will display the following expression:

Binomial coefficient expression

Related questions

+1 vote
1 answer
+1 vote
1 answer
asked Jan 28, 2023 in General IT Tips by phpuser (56.8k points)
+3 votes
1 answer
+1 vote
1 answer
+1 vote
1 answer

...