Mathematica > Core Language > Functional Programming >

Composition

Composition[f1, f2, f3, ...]
represents a composition of the functions f1, f2, f3, ... .
  • Composition allows you to build up compositions of functions which can later be applied to specific arguments.
  • a@b@c gives a[b[c]].
  • a//b//c gives c[b[a]].
New in 2
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team