February 1, 2022

Problem Statement -To multiple the elements of two or more matrices
Scope of work -Build a program to find multiplication of matrices
Challenges
– Multiplying the matrix of order m*p & p*n, then the product of AB order should be m*n
Execution Strategy -Using “i” range and “j” range to find rows and columns -Write pseudocode in excel -Write the code in python -Tested with edge cases
Value Added -If user wants to know the multiplication of matrices this code may help. -Basic python is learnt –