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. Except explicit open source licence (indicated Creative Commons / free), the "Matrix Division" algorithm, the applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or the "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.) and all data download, script, or API access for "Matrix Division" are not public, same for offline use on PC, mobile, tablet, iPhone or Android app!
Reminder : dCode is free to use.

Cite dCode

The copy-paste of the page "Matrix Division" or any of its results, is allowed (even for commercial purposes) as long as you credit dCode!
Exporting results as a .csv or .txt file is free by clicking on the export icon
Cite as source (bibliography):
Matrix Division on dCode.fr [online website], retrieved on 2024-11-21, 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
© 2024 dCode — The ultimate 'toolkit' to solve every games / riddles / geocaching / CTF.
 
Feedback