Search for a tool
Matrix Division

Tool to calculate matrix divisions of 2 matrices (2x2, 3x3, 4x4, 5x5, …). The matrix division consists of the multiplication by an inverted matrix.

Results

Matrix Division -

Tag(s) : Matrix

Share
Share
dCode and more

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!


Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!


Feedback and suggestions are welcome so that dCode offers the best 'Matrix Division' tool for free! Thank you!

Matrix Division

Matrix Division

Division of 2 Matrices


Loading...
(if this message do not disappear, try to refresh this page)

Loading...
(if this message do not disappear, try to refresh this page)

Division of a Matrix by a Scalar (Number)


Loading...
(if this message do not disappear, try to refresh this page)

Answers to Questions (FAQ)

What is a matrix division? (Definition)

Taking a matrix $ M_1 $ of $ m $ rows and $ n $ columns and $ M_2 $ a square matrix of $ n \times n $. The dividing matrices operation with two matrices $ M_1/M_2 $ consist in the multiplication of the matrix $ M_1 $ by the inverse matrix of $ M_2 $ : $ M_2^{-1} $. $$ M_1/M_2 = M_1 \times M_2^{-1} $$

How to make a division with matrices?

To calculate a matrix division, proceed in stages:

— Check that the number of columns of the matrix $ M_1 $ is equal to the number of rows of the matrix $ M_2 $

— Check that the matrix $ M_2 $ is a square matrix (same number of rows and columns: 2x2, 3x3, 4x4, NxN).

— Check that the matrix $ M_2 $ is an invertible matrix.

— Calculate the inverse of the matrix $ M_2 $ noted $ M_2^{-1} $

— Calculate the multiplication">matrix multiplication $ M_1 \times M_2^{-1} $$ the result obtained is that of the matrix division.

Example: Division of 2x2 matrices $$ \begin{bmatrix} 0 & 1 \\ 2 & 3 \end{bmatrix} / \begin{bmatrix} 1 & 2 \\ 3 & 4 \end{bmatrix} = \begin{bmatrix} 0 & 1 \\ 2 & 3 \end{bmatrix} . \left( \frac{1}{2} \begin{bmatrix} -4 & 2 \\ 3 & -1 \end{bmatrix} \right) = \frac{1}{2} \begin{bmatrix} 3 & -1 \\ 1 & 1 \end{bmatrix} $$

To make the division, the multiplication">matrix multiplication rules must be followed: $ M_1 $ must have the same number $ n $ of columns as the number of rows of $ M_2 $. Moreover, to be an invertible matrix, the $ M_2 $ matrix must be a square and therefore of size $ n \times n $.

How to divide a matrix by a scalar?

The division of the matrix $ M=[a_{ij}] $ by a scalar $ \lambda $ is a matrix of the same size as $ M $ (the initial matrix), with each item of the matrix divided by $ \lambda $.

$$ \frac{M}{\lambda} = [ a_{ij} / \lambda ] $$

Example: $$ \begin{bmatrix} 0 & 2 \\ 4 & 6 \end{bmatrix} / 2 = \begin{bmatrix} 0 & 1 \\ 2 & 3 \end{bmatrix} $$

Source code

dCode retains ownership of the "Matrix Division" source code. Any algorithm for the "Matrix Division" algorithm, applet or snippet or script (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or any "Matrix Division" 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 Division" 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.

Cite dCode

The content of the page "Matrix Division" 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: https://www.dcode.fr/matrix-division
In a scientific article or book, the recommended bibliographic citation is: Matrix Division on dCode.fr [online website], retrieved on 2025-04-16, https://www.dcode.fr/matrix-division

Need Help ?

Please, check our dCode Discord community for help requests!
NB: for encrypted messages, test our automatic cipher identifier!

Questions / Comments

Feedback and suggestions are welcome so that dCode offers the best 'Matrix Division' tool for free! Thank you!


https://www.dcode.fr/matrix-division
© 2025 dCode — The ultimate collection of tools for games, math, and puzzles.
 
Feedback