1
\documentclass{amsart}
\begin{document}
$\frac{(n+1)!}{(n+1)^{n+1}}$
\end{document}

The problem is that I want to make (n+1) on the same line. How do I achieve this?

Joseph Wright
  • 259,911
  • 34
  • 706
  • 1,036
Yes
  • 1,639

1 Answers1

2

\hfill can be used to move the nominator to the left:

\documentclass{amsart}

\begin{document} 
  $\frac{(n+1)!\hfill}{(n+1)^{n+1}}$
\end{document}

Result

LaRiFaRi
  • 43,807
Heiko Oberdiek
  • 271,626