Max Min composition for crisp relation
Max Min composition is one way of computing interaction between variables of different relations. The composition of relation R and S is denoted as R â S. Mathematically, it is defined as,
R â S = {(x, z) | (x, y) â R, and (y, z) â S, ây â Y}
The composition of the relation is computed in two different ways:
Although, for crisp relations both are identical, for fuzzy relations, the results of max-min composition and max-product composition would be different.
Example 1: Max min composition
We will try to understand max min composition with multiple examples. Let R = { (x1, y1), (x1, y3), (x2, y4) } and S = { (y1, z2), (y3, z2) } . let us find the Max-Min composition of these relations.
As we know, the representation of crisp relation could take multiple forms. The above relation R and S we can represent as,
Sagittal representation:
Matrix representation:
The final composition of relation would look something like this,
Let us see how to fill the cells of the composition matrix T
ĪT(x1, z1) = max(min( ĪR(x1, y1), ĪS(y1, z1)), min( ĪR(x1, y2), ĪS(y2, z1)), min( ĪR(x1, y3), ĪS(y3, z1)), min( ĪR(x1, y4), ĪS(y4, z1))
ĪT(x1, z1) = max(min(1, 0),min(0, 0),min(1, 0),min(0, 0))
ĪT(x1, z1) = max(0,0,0,0) = 0
Similarly,
ĪT(x1, z2) = max(min(1, 1), min(0, 0), min(1, 1), min(0, 0)) = max(1, 0, 1, 0) = 1
ĪT(x2, z1) = max(min(0, 0), min(0, 0), min(0, 0), min(1, 0)) = max(0, 0, 0, 0) = 0
ĪT(x2, z2) = max(min(0, 1), min(0, 0), min(0, 1), min(1, 0)) = max(0, 0, 0, 0) = 0
ĪT(x3, z1) = max(min(0, 0), min(0, 0), min(0, 0), min(0, 0)) = max(0, 0, 0, 0) = 0
ĪT(x3, z2) = max(min(0, 1), min(0, 0), min(0, 1), min(0, 0)) = max(0, 0, 0, 0) = 0
Thus, the composition of relation R and S would be,
Watch on YouTube:
Example 2: Max min composition
Given X={1, 3, 5}, Y={1, 3, 5},
R = { (x, y) | y = x + 2 } = { (1, 3), (3, 5) }
S = { (x, y) | x < y } = { (1, 3), (1, 5), (3, 5) }
Find the Max-Min composition of relations R and S
Solution:
XÃY={(1, 1), (1, 3), (1, 5),(3, 1), (3, 3), (3, 5),(5, 1), (5, 3), (5, 5)}
R = { (x, y) | y = x + 2 } = { (1, 3), (3, 5) }
S = { (x, y) | x < y } = { (1, 3), (1, 5), (3, 5) }
In matrix form, we can represent the relation R and S as,
T= R â S = {(x, z) | (x, y) â R, and (y, z) â S, ây â Y}
ĪT(1, 1) = max(min(0, 0), min(1, 0), min(0, 0)) = max(0, 0, 0) = 0
ĪT(1, 3) = max(min(0, 1), min(1, 0), min(0, 0)) = max(0, 0, 0) = 0
ĪT(1, 5) = max(min(0, 1), min(1, 1), min(0, 0)) = max(0, 1, 0) = 1
ĪT(3, 1) = max(min(0, 0), min(0, 0), min(1, 0)) = max(0, 0, 0) = 0
ĪT(3, 3) = max(min(0, 1), min(0, 0), min(1, 0)) = max(0, 0, 0) = 0
ĪT(3, 5) = max(min(0, 1), min(0, 1), min(1, 0)) = max(0, 0, 0) = 0
ĪT(5, 1) = max(min(0, 0), min(0, 0), min(0, 0)) = max(0, 0, 0) = 0
ĪT(5, 3) = max(min(0, 1), min(0, 0), min(1, 0)) = max(0, 0, 0) = 0
ĪT(5, 5) = max(min(0, 1), min(1, 0), min(0, 0)) = max(0, 0, 0) = 0
Thus, the composition of relation R and S would be,
Test your knowledge:
For the given relations,
Find max-min composition.
Please post your answer / query / feedback in comment section below !
This is really helpful
Thank you Urmi
Very informative and helpful, nicely explained
Thank you very much Preeti for your words
Ahh… What a simple and easy explanation with examples!
Thank for your words Shivang
simply explained.
Thanks dear
Very Helpful. Thanks.
Noted with thanks !
Everything explained so nicely.
Thanks for interaction
Max Min composition Explained wonderfully
Noted with thanks
please check XT(5,3) and XT(5,5) in the order pairs of the min terms