Wiki

Clone wiki

symja_android_library / Symbols / Distribute

Distribute

Distribute(f(x1, x2, x3,...))
distributes f over Plus appearing in any of the xi.

See:

Examples

>>> Distribute((a+b)*(x+y+z))
a*x+a*y+a*z+b*x+b*y+B*z

Updated