\documentclass{mwrep}
\usepackage{amsmath}
\begin{document}
Check:\\
with "," $0,125$\\
with "." $0.125$
with commas:
\begin{equation}
P=
\begin{bmatrix} 0,1 & 0,3 & 0,0 & 0,6 \\
0,2 & 0,4 & 0,1 & 0,3 \\
0,0 & 0,8 & 0,0 & 0,2 \\
0,2 & 0,0 & 0,2 & 0,6
\end{bmatrix}
\end{equation}
with dots:
\begin{equation}
P=
\begin{bmatrix} 0.1 & 0.3 & 0.0 & 0.6 \\
0.2 & 0.4 & 0.1 & 0.3 \\
0.0 & 0.8 & 0.0 & 0.2 \\
0.2 & 0.0 & 0.2 & 0.6
\end{bmatrix}
\end{equation}
\end{document}
As you can see numbers with a comma as a decimal separator are wider than those with a dot. How can I change space after a comma to be equal to space after a dot?