PermutationMultiply Operator

Multiplies two permutations.

Definition

Namespace: Meta.Numerics.Functions
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 4.2.0+6d77d64445f7d5d91b12e331399c4362ecb25333
C#
public static Permutation operator *(
	Permutation a,
	Permutation b
)

Parameters

a  Permutation
The first permutation.
b  Permutation
The second permutation.

Return Value

Permutation
The product permutation ab.

Remarks

The product ab means first applying b, then applying a. This right-to-left convention arises from the convention that operators are applied to the right.

See Also