方括号矩阵中的多个方程

方括号矩阵中的多个方程

在求解许多方程式时,您通常会将它们填充到矩阵中,然后使用高斯-乔丹消元法求解。在我的家乡,我们是这样写的,我的文档中应该显示以下内容:

图片描述

图像的灰色部分是为了清晰起见,不是我需要的。我只需要带(n+1) x n分隔线的矩阵。我还需要将多个矩阵并排显示以显示 GEM 过程:

图片描述

我该怎么做?

答案1

摘自 Stefan 的回答https://tex.stackexchange.com/a/2244/46716

\documentclass{article}
\usepackage{amsmath}

\makeatletter
\renewcommand*\env@matrix[1][*\c@MaxMatrixCols c]{%
  \hskip -\arraycolsep
  \let\@ifnextchar\new@ifnextchar
  \array{#1}}
\makeatother

\begin{document}

    \[ \begin{bmatrix}[*3c|c]
        2 & 5 & 0 & 7 \\
        3 & 0 & 4 & 2 \\
        4 & 2 & 6 & 3 \\
    \end{bmatrix} \Rightarrow \begin{bmatrix}[*3c|c]
        2 & 2 & 2 & 6 \\
        3 & 0 & 4 & 6 \\
        5 & 2 & 6 & 6 \\
    \end{bmatrix} \]

\end{document}

在此处输入图片描述

相关内容