I studied Matrix Chain Multiplication problem and I understand what the algorithm does. Lately, I came across Catalan numbers, which came in handy when solving the parenthesization problem. The problem appeared to me very similar to Matrix Chain Multiplication. In fact, in CLRS they mention the Catalan numbers in the Matrix Chain Multiplication chapter.
I am curious can you solve Matrix Chain Multiplication with Catalan numbers algorithm? My thoughts are: no, you can't solve because Catalan numbers describe number of ways to parenthesize matrices, whereas the original Matrix Chain problem asks a different question -- specific way to arrange parenthesis that would give the smallest cost.
Are my thoughts correct?