Skip to content

MultiplySides

MultiplySides(compare-expr, value)

multiplies value with all elements of the compare-expr. compare-expr can be True, False or a comparison expression with head Equal, Unequal, Less, LessEqual, Greater, GreaterEqual.

Examples

>> MultiplySides(a==a, x)
True
>> MultiplySides(a==b, x)
a*x==b*x

Implementation status

  • ✅ - full supported

Github