I'm looking at proving that the Łukasiewicz T-norm operator, or bounded product T-norm, is a T-norm, but I'm stuck on associativity.
The operator is defined as:
$xTy = max[0,x+y-1]$
Trying to show associativity:
$(aTb)Tc =$
$max[0,max[0,a+b-1]+c-1] =$
$max[0,max[c-1, a+b+c-2]] =$
$max[0,max[c-a,b+c-1]+a-1] =$
$max[0,a+max[c-a,b+c-1]-1] =$
At this point, I need to show that this is equivalent to...
$=max[0,a+max[0,b+c-1]-1]=aT(bTc)/$
But I can't figure out how to resolve $c-a$ to zero.
Hopefully someone can help!