Search for a tool
Matrix Direct Sum

Tool to calculate the direct sums of matrices (formal computation). The matrix direct sum calculates the sum of N matrices that can be of different sizes.

Results

Matrix Direct Sum -

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 Direct Sum' tool for free! Thank you!

Matrix Direct Sum

Direct Sum 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)

Answers to Questions (FAQ)

How to add 2 matrices with direct sum?

Given $ M_1=[a_{ij}] $ a matrix of $ m $ lines and $ n $ columns and $ M_2=[b_{ij}] $ a matrix of $ p $ lines and $ q $ columns (2x2, 2x3, 3x2, 3x3, etc).

The direct sum of these 2 matrices is noted with the character (circled plus sign) $ M_1 \oplus M_2 $ and is a matrix of $ m+p $ lines and $ n+q $ columns.

$$ A \oplus B = \begin{bmatrix} [a_{ij}] & [0] \\ [0] & [b_{ij}] \end{bmatrix} $$

Example: $$ \begin{bmatrix} 1 & 2 & 3 \\ 4 & 5 & 6 \end{bmatrix} \oplus \begin{bmatrix} 7 & 8 \\ 9 & 10 \end{bmatrix} = \begin{bmatrix} 1 & 2 & 3 & 0 & 0 \\ 4 & 5 & 6 & 0 & 0 \\ 0 & 0 & 0 & 7 & 8 \\ 0 & 0 & 0 & 9 & 10 \end{bmatrix} $$

Practically, the matrix addition by direct sum does not require any calculation, it only consist in copying the matrices diagonally, into a larger one, and fill with zeros.

The direct sum operation must be distinguished from the conventional operation of matrix addition, although it may take different size matrices, the result is not at all identical.

How to add N matrices with direct sum?

The direct addition is generalizable to N matrices, but the order matter.

$$ A \oplus B \oplus C = ( A \oplus B ) \oplus C \neq A \oplus ( B \oplus C ) $$

Source code

dCode retains ownership of the "Matrix Direct Sum" source code. Except explicit open source licence (indicated Creative Commons / free), the "Matrix Direct Sum" algorithm, the applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or the "Matrix Direct Sum" 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 Direct Sum" 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 Direct Sum" 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 Direct Sum on dCode.fr [online website], retrieved on 2024-07-27, https://www.dcode.fr/matrix-direct-sum

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 Direct Sum' tool for free! Thank you!


https://www.dcode.fr/matrix-direct-sum
© 2024 dCode — El 'kit de herramientas' definitivo para resolver todos los juegos/acertijos/geocaching/CTF.
 
Feedback