By default, LaTeX appends one inch (72.27pt) to the left (and top) of document.
Here I want to prove it as follows. But I missed some other page layout macros to subtract from \paperwidth.
% the objective is to prove that
% left padding of 1in = 72.27pt
% has been added by default
% by LaTeX
\documentclass{article}
\begin{document}
\the
\dimexpr
\paperwidth
-\hoffset
-\oddsidemargin
-\textwidth
-\marginparsep
-\marginparwidth
% minus some other page layout macros
% should be there but I don't know
\relax
\end{document}
How to express 72.27pt in terms of \oddsidemargin, \textwidth, ... that are subtracted from \paperwidth?
I need a length macro for the red segment below.

The reason I accepted egreg answer is due to his comment below.
Again: the length you display in red is not available directly, but only through computation: it's
\paperwidth-1in-\hoffset-\oddsidemargin-\textwidth-\marginparsep-\marginparwidth
Thus it is impossible to get the required expression to prove 72.27pt.
\layoutas the only token in the document. – egreg Jul 17 '11 at 18:04\paperwidth-1in-\hoffset-\oddsidemargin-\textwidth-\marginparsep-\marginparwidth– egreg Jul 17 '11 at 18:29