Matrix Chain Multiplication Example1
Matrix Chain Multiplication Example1
to multiply them in such a way that the total number of multiplication is minimum.
In the case of more than two matrices, the total number of multiplication depends
on the sequence of multiplication. E.g. see the diagram below.
Therefore, we need to find a sequence of multiplication of matrices which results
into minimum number of multiplication.
Example: We are given the sequence {4, 10, 3, 12, 20, and 7}. The matrices have size 4 x
10, 10 x 3, 3 x 12, 12 x 20, 20 x 7. We need to compute M [i,j], 0 ≤ i, j≤ 5. We know M [i, i]
= 0 for all i.
Let us proceed with working away from the diagonal. We compute the optimal solution
for the product of 2 matrices.
Here P0 to P5 are Position and M1 to M5 are matrix of size (pi to pi-1)
33.2M
660
HTML Tutorial
2. m (2, 3) = m2 x m3
= 10 x 3 x 3 x 12
= 10 x 3 x 12 = 360
3. m (3, 4) = m3 x m4
= 3 x 12 x 12 x 20
= 3 x 12 x 20 = 720
4. m (4,5) = m4 x m5
= 12 x 20 x 20 x 7
= 12 x 20 x 7 = 1680
o We initialize the diagonal element with equal i,j value with '0'.
o After that second diagonal is sorted out and we get all the values
corresponded to it
Now the third diagonal will be solved out in the same way.
M [1, 3] =264
M [2, 4] = M2 M3 M4
1. There are two cases by which we can solve this multiplication: (M 2x
M3)+M4, M2+(M3 x M4)
2. After solving both cases we choose the case in which minimum output is
there.
M [2, 4] = 1320
M [3, 5] = M3 M4 M5
1. There are two cases by which we can solve this multiplication: ( M 3 x M4) +
M5, M3+ ( M4xM5)
2. After solving both cases we choose the case in which minimum output is
there.
M [3, 5] = 1140
M [1, 4] = M1 M2 M3 M4
After solving these cases we choose the case in which minimum output is there
M [1, 4] =1080
M [2, 5] = M2 M3 M4 M5
After solving these cases we choose the case in which minimum output is there
M [2, 5] = 1350
M [1, 5] = M1 M2 M3 M4 M5
After solving these cases we choose the case in which minimum output is there
M [1, 5] = 1344
Step 3: Computing Optimal Costs: let us assume that matrix Ai has dimension pi-
1x pi for i=1, 2, 3....n. The input is a sequence (p 0,p1,......pn) where length [p] = n+1.
The procedure uses an auxiliary table m [1....n, 1.....n] for storing m [i, j] costs an
auxiliary table s [1.....n, 1.....n] that record which index of k achieved the optimal
costs in computing m [i, j].
The algorithm first computes m [i, j] ← 0 for i=1, 2, 3.....n, the minimum costs for
the chain of length 1.