Matrix Chain Ordering Problem: Difference between revisions

From Algorithm Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 22: Line 22:
|-
|-


| [[Brute Force (Matrix Chain Ordering Problem Matrix Chain Multiplication)|Brute Force]] || 1940 || O ({4}^n) || $O(n)$ || Exact || Deterministic ||   
| [[Brute Force (Matrix Chain Ordering Problem Matrix Chain Multiplication)|Brute Force]] || 1940 || $O({4}^n)$ || $O(n)$ || Exact || Deterministic ||   
|-
|-
| [[Dynamic Programming Algorithm (S. S. Godbole) (Matrix Chain Ordering Problem Matrix Chain Multiplication)|Dynamic Programming Algorithm (S. S. Godbole)]] || 1953 || $O(n^{3})$ || $O(n^{2})$ || Exact || Deterministic ||   
| [[Dynamic Programming Algorithm (S. S. Godbole) (Matrix Chain Ordering Problem Matrix Chain Multiplication)|Dynamic Programming Algorithm (S. S. Godbole)]] || 1953 || $O(n^{3})$ || $O(n^{2})$ || Exact || Deterministic ||   
Line 38: Line 38:
[[File:Matrix Chain Multiplication - Matrix Chain Ordering Problem - Space.png|1000px]]
[[File:Matrix Chain Multiplication - Matrix Chain Ordering Problem - Space.png|1000px]]


== Pareto Frontier Improvements Graph ==  
== Space-Time Tradeoff Improvements ==  


[[File:Matrix Chain Multiplication - Matrix Chain Ordering Problem - Pareto Frontier.png|1000px]]
[[File:Matrix Chain Multiplication - Matrix Chain Ordering Problem - Pareto Frontier.png|1000px]]

Revision as of 15:34, 15 February 2023

Description

Matrix chain multiplication (or Matrix Chain Ordering Problem; MCOP) is an optimization problem. Given a sequence of matrices, the goal is to find the most efficient way to multiply these matrices.

Related Problems

Subproblem: Approximate MCOP, Matrix Chain Scheduling Problem

Related: Matrix Chain Scheduling Problem, Approximate MCSP

Parameters

$n$: number of matrices

Table of Algorithms

Name Year Time Space Approximation Factor Model Reference
Brute Force 1940 $O({4}^n)$ $O(n)$ Exact Deterministic
Dynamic Programming Algorithm (S. S. Godbole) 1953 $O(n^{3})$ $O(n^{2})$ Exact Deterministic
T. C. Hu ; M. T. Shing 1982 $O(nlogn)$ $O(n)$ Exact Deterministic Time

Time Complexity Graph

Matrix Chain Multiplication - Matrix Chain Ordering Problem - Time.png

Space Complexity Graph

Matrix Chain Multiplication - Matrix Chain Ordering Problem - Space.png

Space-Time Tradeoff Improvements

Matrix Chain Multiplication - Matrix Chain Ordering Problem - Pareto Frontier.png

References/Citation

https://citeseerx.ist.psu.edu/viewdoc/citations?doi=10.1.1.695.2923