2

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!

doobdood
  • 137

1 Answers1

4

Like this:

enter image description here

\documentclass{article}

\usepackage{mathtools}

\begin{document}

[ A^k \coloneqq \overbrace{A\times A\times \cdots \times A}^{k-\text{times}} ]

\end{document}

Jinwen
  • 8,518