Are you looking for \label{..} and \ref{..}?
\chapter{chap one vector operators} \label{chap:VectorOperators}
bla bla bla
\chapter{chap two another topic} \label{chap:AnotherTopic}
\ref{chap:VectorOperators} and then \ref{chap:AnotherTopic}
In any case, if that's not what you are looking for…
Roughly you have to expand it, \edef for instance. Note that you can't have _ in the name of commands.
\chapter{chap one vector operators} \edef\VectorOperatorsChapter{\thechapter}
bla bla bla
\chapter{chap two another topic} \edef\AnotherTopicChapter{\thechapter}
\VectorOperatorsChapter{} and then \AnotherTopicChapter
This might give problems at some point, you would need \protected@edef to be secure. So you might want to define
\makeatletter
\newcommand\savevalue[2]{\protected@edef#1{#2}}
\makeatletter
and then use like \savevalue\AnotherTopicChapter{\thechapter}.
\newcommands and the use of\VectorOperatorsChapterand\AnotherTopicChapter. Can you explain? – Werner Sep 26 '16 at 04:28