[Tex/LaTex] Intersection on a range

math-modesymbols

I want to make a symbol representing the intersection over the range i = 1 to n (by having i = 1 at the bottom right of the intersection symbol and n at the top right, like a summation) How do I do this? Thanks!

Best Answer

Like this?

\begin{displaymath}
  \bigcap\limits^n_{i=0}
\end{displaymath}

If you want to use it as inline math you could write it like this:

$\bigcap^n_{i=0}$

Since it's a very large symbol I wouln't suggest the inline solution

enter image description here

Here is a solution creating the output you described

{\bigcap}_{i=0}^k

enter image description here