Challenge: Linear Algebra Foundations #3- Matrix Multiplication

Subdomeniu: Linear Algebra Foundations (linear-algebra-foundations)

Scor cont: 2.0 / 2

Submission status: Accepted

Submission score: 1.0

Submission ID: 464733210

Limbaj: python3

Link challenge: https://www.hackerrank.com/challenges/linear-algebra-foundations-3-matrix-multiplication/problem

Cerinta

**Matrix Multiplication**  

Two matrices of size 2x2 are multiplied as shown below. Find the integers $A$, $B$, $C$, $D$ in the resultant matrix. 

	[1  2 ]   x     [4  5 ]      [A  B]
	[2  3 ]         [7  8 ]   =  [C  D] 
	        
 
 
In the text box below, enter each of the four integers, $A$, $B$, $C$, $D$ on a new line.

Cod sursa

print('18\n21\n29\n34')
HackerRank Linear Algebra Foundations – Linear Algebra Foundations #3- Matrix Multiplication