1

How can I write this expression in latex

exponents

antshar
  • 4,238
  • 9
  • 30
quomodo
  • 11

3 Answers3

4

a^b^c is intentionally a syntax error to force you to choose which of the following you mean:

enter image description here

\documentclass{article}

\begin{document}

$a=3, b=2, c=3$ [ {a^b}^c = 9^3 = 729, a^{b^c} = 3^8 =6561 ] \end{document}

Note in the first form c is a superscript (7pt) but in the second it is in scriptscript style (5pt)

David Carlisle
  • 757,742
3

It's as simple as typing it out straight

a^{b^c}

enter image description here

antshar
  • 4,238
  • 9
  • 30
3

I’m gonna take your question literally. ;-)

\documentclass{article}

\usepackage{graphicx}

\begin{document}

Hello, world.

\includegraphics{exponent.png}

\end{document}

enter image description here

Gaussler
  • 12,801