Tool to calculate matrix subtraction in algebra. The matrix subtraction is similar to the addition, it is obtained by subtracting the elements of each matrix.
Matrix Subtraction - dCode
Tag(s) : Matrix
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
Take 2 matrices of identical size: $ M_1=[a_{ij}] $ a matrix of $ m $ rows and $ n $ columns (with $ m = n $ in the case of a square matrix) and $ M_2=[b_{ij}] $ another matrix of $ m $ lines and $ n $ columns.
The subtraction of these 2 matrices $ M_1 - M_2 = [c_{ij}] $ is an unchanged size matrix with $ m $ lines and $ n $ columns, such as : $$ \forall i, j : c_{ij} = a_{ij}-b_{ij} $$
Subtracting matrices is only defined with 2 matrices of the same shape (square 2x2, 3x3 or rectangular 2x3, 3x2, etc.). The calculation consists in subtracting the elements in the same position in each matrix.
Example: $$ \begin{bmatrix} 7 & 8 \\ 9 & 10 \\ 11 & 12 \end{bmatrix} - \begin{bmatrix} 1 & 2 \\ 3 & 4 \\ 5 & 6 \end{bmatrix} = \begin{bmatrix} 7-1 & 8-2 \\ 9-3 & 10-4 \\ 11-5 & 12-6 \end{bmatrix} = \begin{bmatrix} 6 & 6 \\ 6 & 6 \\ 6 & 6 \end{bmatrix} $$
The marix subtraction operation is only defined with identical shapes matrices (as the operation of matrix addition). Another operation called direct sum allows the use of matrices of different sizes and can be generalized to subtraction.
dCode retains ownership of the "Matrix Subtraction" source code. Any algorithm for the "Matrix Subtraction" algorithm, applet or snippet or script (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or any "Matrix Subtraction" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) or any database download or API access for "Matrix Subtraction" or any other element are not public (except explicit open source licence like Creative Commons). Same with the download for offline use on PC, mobile, tablet, iPhone or Android app.
Reminder: dCode is an educational and teaching resource, accessible online for free and for everyone.
The content of the page "Matrix Subtraction" and its results may be freely copied and reused, including for commercial purposes, provided that dCode.fr is cited as the source.
Exporting the results is free and can be done simply by clicking on the export icons ⤓ (.csv or .txt format) or ⧉ (copy and paste).
To cite dCode.fr on another website, use the link:
In a scientific article or book, the recommended bibliographic citation is: Matrix Subtraction on dCode.fr [online website], retrieved on 2025-04-16,