I need to expand an exponent and I want to typeset it as such:
n times
A^k = A * A * A * ... * A * A
Is there a way to do this in LaTeX? Should I be doing something else altogether? Thanks!
I need to expand an exponent and I want to typeset it as such:
n times
A^k = A * A * A * ... * A * A
Is there a way to do this in LaTeX? Should I be doing something else altogether? Thanks!
Like this:
\documentclass{article}
\usepackage{mathtools}
\begin{document}
[
A^k \coloneqq \overbrace{A\times A\times \cdots \times A}^{k-\text{times}}
]
\end{document}
\prod_{i=1}^k A;-) – John Kormylo Feb 09 '21 at 15:40