Im a fresh new user of LaTex and I have to write a short mathematic report. I found a solution reading my manual but I can't solve the following problem, this is the interested piece of code
Sia \textbf{$\delta$b$\in$$\mathbb{R}$$^{n}$}
il vettore delle perturbazioni dei termini noti del sistema
\begin{equation} \label{sys_eq}
A(x)=b
\end{equation}
e si indichi con
x + $\delta$x
la soluzione del sistema perturbato, avremo
\begin{displaymath}
$$ A(x+$\delta$x)=b+$\delta$b $$
\end{displaymath}
And this is the result:
As you can see the first equation is properly centered, but I tried everything to center the second one without success. Can someone help me with this problem?


$– David Carlisle Mar 05 '21 at 15:47\begin{displaymath} $$ A(x+$\delta$x)=b+$\delta$b $$ \end{displaymath}should just be\begin{displaymath} A(x+ \delta x)=b+ \delta b \end{displaymath}. Similarlyx + $\delta$xshould be$x + \delta x$. – moewe Mar 05 '21 at 15:49\textbf{$\delta$b$\in$$\mathbb{R}$$^{n}$}also looks wrong. I'm not quite sure what you want to achieve, but I'm guessing it is more like$\delta \mathbf{b} \in \mathbb{R}^{n}$. – moewe Mar 05 '21 at 15:53\begin{displaymath}is cancelled by the first instance of$$, while the second instance of$$cancels out\end{displaymath}. For more information on the properties of$$,\begin{displaymath}, and\end{displaymath}see, e.g., this answer -- shameless self-citation alert! -- to the question What are the differences between $$, [, align, equation and displaymath? – Mico Mar 05 '21 at 16:04