

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Matrix Chain Multiplication
If a chain of matrices is given, we have to find the minimum number of the correct sequence of matrices to multiply.
We know that the matrix multiplication is associative, so four matrices ABCD, we can multiply A(BCD), (AB)(CD), (ABC)D, A(BC)D, in these sequences. Like these sequences, our task is to find which ordering is efficient to multiply.
In the given input there is an array say arr, which contains arr[] = {1, 2, 3, 4}. It means the matrices are of the order (1 x 2), (2 x 3), (3 x 4).
Input and Output
Input: The orders of the input matrices. {1, 2, 3, 4}. It means the matrices are {(1 x 2), (2 x 3), (3 x 4)}. Output: Minimum number of operations need multiply these three matrices. Here the result is 18.
Algorithm
matOrder(array, n)
Input − List of matrices, the number of matrices in the list.
Output − Minimum number of matrix multiplication.
Begin define table minMul of size n x n, initially fill with all 0s for length := 2 to n, do fir i:=1 to n-length, do j := i + length – 1 minMul[i, j] := ∞ for k := i to j-1, do q := minMul[i, k] + minMul[k+1, j] + array[i-1]*array[k]*array[j] if q < minMul[i, j], then minMul[i, j] := q done done done return minMul[1, n-1] End
Example
#include<iostream> using namespace std; int matOrder(int array[], int n) { int minMul[n][n]; //holds the number of scalar multiplication needed for (int i=1; i<n; i++) minMul[i][i] = 0; //for multiplication with 1 matrix, cost is 0 for (int length=2; length<n; length++) { //find the chain length starting from 2 for (int i=1; i<n-length+1; i++) { int j = i+length-1; minMul[i][j] = INT_MAX; //set to infinity for (int k=i; k<=j-1; k++) { //store cost per multiplications int q = minMul[i][k] + minMul[k+1][j] + array[i- 1]*array[k]*array[j]; if (q < minMul[i][j]) minMul[i][j] = q; } } } return minMul[1][n-1]; } int main() { int arr[] = {1, 2, 3, 4}; int size = 4; cout << "Minimum number of matrix multiplications: " << matOrder(arr, size); }
Output
Minimum number of matrix multiplications: 18
- Related Questions & Answers
- C Program for Matrix Chain Multiplication
- Matrix Chain Multiplication (A O(N^3) Solution) in C++
- Matrix multiplication algorithm
- Sparse Matrix Multiplication in C++
- Python program multiplication of two matrix.
- C++ Program to Perform Matrix Multiplication
- Algorithm for matrix multiplication in JavaScript
- Matrix Multiplication and Normalization in C program
- Matrix Vector multiplication with Einstein summation convention in Python
- Maximum Length Chain of Pairs
- What is block chain technology?
- Longest String Chain in C++
- Take in two 2-D arrays of numbers and returns their matrix multiplication result- JavaScript
- Tuple multiplication in Python
- What are Blocks in a Block Chain?
Advertisements