Respuesta1
La mayoría de los símbolos de operaciones binarias tienen una contraparte “n-aria”:
+
tiene\sum
\cdot
tiene\prod
\oplus
tiene\bigoplus
\vee
tiene\bigvee
\wedge
tiene\bigwedge
y otros. Por razones históricas, \vee
y \wedge
tienen nombres alternativos \lor
y \land
, pero las versiones "grandes" no.
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather*}
\bigvee_{1\leq k\leq n} a_k = a_1\lor a_2\lor \dots \lor a_n
\\
\bigwedge_{1\leq k\leq n} a_k = a_1\land a_2\land \dots \land a_n
\end{gather*}
\end{document}
Quizás prefieras tener \biglor
y \blgland
:
\documentclass{article}
\usepackage{amsmath}
\AtBeginDocument{%
\NewCommandCopy{\biglor}{\bigvee}%
\NewCommandCopy{\bigland}{\bigwedge}%
}
\begin{document}
\begin{gather*}
\biglor_{1\leq k\leq n} a_k = a_1\lor a_2\lor \dots \lor a_n
\\
\bigland_{1\leq k\leq n} a_k = a_1\land a_2\land \dots \land a_n
\end{gather*}
\end{document}
La salida es la misma.
Nota.No es \AtBeginDocument
realmente necesario con pdflatex
, pero sí lo es si usas unicode-math
XeLaTeX o LuaLaTeX.