1

I don't want to do 5 matrix multiplication for this. Is there any easy way?

Math
  • 11

2 Answers2

5

In general there is not. If the relation is on a small set, the quickest approach is probably to draw the digraph of the relation and check it by eye for transitivity.

Brian M. Scott
  • 616,228
4

A relation is transitive if and only if it is contained in its square. If you're looking at a relation on a small finite set represented as a 0-1 matrix, you can easily find the square of the relation by squaring the matrix. You certainly don't need to perform five matrix multiplications.

Chris Eagle
  • 33,306