This information is obtained from the Info manual of LaTeX.
Everything LaTeX numbers for you has a counter associated with it. The name
of the counter is the same as the name of the environment or command that
produces the number, except with no backslash, \.
Below is a list of the counters used in LaTeX's standard document classes to control numbering.
part paragraph figure enumi chapter subparagraph table enumii section page footnote enumiii subsection equation mpfootnote enumiv subsubsection(enumi - enumiv are used for the nested enumerate environment)
These are some of the commands that refer to counters.
See examples in the sections Numbering and Fancy Stuff.
\renewcommand{\theequation}{\thesection.\arabic{equation}}
It redefines the macro \theequation, used to number equations,
to produce section number, followed by a period, and the equation number in
"arabic". A better way to achieve the same result is
\numberwithin{equation}{section}.
See more at Numbering.