Mode Command

Mode( <List of Numbers> )

Determines the mode(s) of the list elements.

  • Mode({1, 2, 3, 4}) returns an empty list {}.

  • Mode({1, 1, 1, 2, 3, 4}) returns the list {1} .

  • Mode({1, 1, 2, 2, 3, 3, 4}) returns the list {1, 2, 3}.