[Tex/LaTex] bigger parentheses in equations

delimitersequationsformatting

I have the following TeX equation:

r = (I_n - (.85) M^T)^{-1} (\frac{1 - (.85)}{5}) \cdot 1 \\

I want bigger parentheses around the term (1-(.85)/5), how can I achieve this?

  1. How can I get large parentheses?
  2. Is there a general symbol for larger symbols such as \dfrac{}{} for fractions?
  3. How can I do large brackets instead of parentheses?

Best Answer

You can use the \left...\right construct for stretchable delimiters or some of the commands from the \bigl, \bigr family for bigger delimiters:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\[
r = (I_n - (.85)M^T)^{-1}\biggl(\frac{1 - (.85)}{5}\biggr)\cdot 1 
\]

\[
r = (I_n - (.85)M^T)^{-1}\left(\frac{1 - (.85)}{5}\right)\cdot 1 
\]

\[
r = (I_n - (.85)M^T)^{-1}\biggl[\frac{1 - (.85)}{5}\biggr]\cdot 1 
\]

\[
r = (I_n - (.85)M^T)^{-1}\left[\frac{1 - (.85)}{5}\right]\cdot 1 
\]

\end{document}

enter image description here

When to use one or the other depends; the \left...\right pairs must be balanced in every line of a multi-line displayed expression so you sometimes will have to use \left. and \right. (notice the final dot) to get proper balancing; and ven after balancing you might need to use a phantom to get an homogeneous height for the delimiters in separate lines. The "big" family of command don't suffer from these limitations.

Another case in which the "big" family produces better results is illustrated in the following simple example:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

Wrong result
\[
\lvert \lvert x \rvert - \lvert x \rvert \rvert \leq \lvert x-y \rvert.
\]

Wrong result
\[
\left\lvert \lvert x \rvert - \lvert x \rvert \right\rvert \leq \lvert x-y \rvert.
\]

Correct result
\[
\bigl\lvert \lvert x \rvert - \lvert x \rvert \bigr\rvert \leq \lvert x-y \rvert.
\]

\end{document}

enter image description here

A little example showing the sizes for the different commands of the "big" family in the case of an opening parenthesis:

\documentclass{article}
\usepackage{amsmath}

\begin{document}

\begin{tabular}{@{}*{5}{c}@{}}
 & \verb!\bigl! & \verb!\Bigl! & \verb!\biggl! & \verb!\Biggl! \\[1ex]
$($ & $\bigl($ & $\Bigl($ & $\biggl($ & $\Biggl($ 
\end{tabular}

\end{document}

enter image description here