I am having trouble writing a circumflex above some letters in \begin{equation} environment.
I tried to use \^{} as you can see. However, for some variables in the equation, like matrix A, the syntax works. But for the vector b, the output is an offset circumflex. For vector c it works, and for d it returns an error.
Code: Select all
\begin{equation}
\displaystyle \frac{d\boldsymbol{\mbox{x}}}{dt} = \text{\^{A}}\boldsymbol{\mbox{x}} + \boldsymbol{\mbox{\^{b}}} x_{u}
\end{equation}
\begin{equation}
x_{i} = \boldsymbol{\mbox{\^{c}}}\boldsymbol{\mbox{x}} + \^{d}x_{u}
\end{equation}
Any reason as to why I am getting inconsistent output using the same syntax?