Structural Operations
Mathematica contains some powerful primitives for making structural changes to expressions. You can use these primitives both to implement mathematical properties such as associativity and distributivity, and to provide the basis for some succinct and efficient programs.
Here we describe various operations that you can explicitly perform on expressions.
"Attributes" describes how some of these operations can be performed automatically on all expressions with a particular head by assigning appropriate attributes to that head.
You can use the
Mathematica function
Sort [expr] to sort elements not only of lists, but of expressions with any head. In this way, you can implement the mathematical properties of commutativity or symmetry for arbitrary functions.
You can use
Sort to put the arguments of any function into a standard order.
Sort[
expr]
sort the elements of a list or other expression into a standard order
Sort[
expr,
pred]
sort using the function pred to determine whether pairs are in order
Ordering[
expr]
give the ordering of elements when sorted
Ordering[
expr,
n]
give the ordering of the first n elements when sorted
Ordering[
expr,
n,
pred]
use the function pred to determine whether pairs are in order
OrderedQ[
expr]
give True if the elements of expr are in standard order, and False otherwise
Order[
expr1,
expr2]
give if comes before in standard order, and if it comes after
Sorting into order.
The second argument to
Sort is a function used to determine whether pairs are in order. This sorts numbers into descending order.
This sorting criterion puts elements that do not depend on before those that do.
Flatten[
expr]
flatten out all nested functions with the same head as expr
Flatten[
expr,
n]
flatten at most n levels of nesting
Flatten[
expr,
n,
h]
flatten functions with head h
FlattenAt[
expr,
i]
flatten only the i^(th) element of expr
Flattening out expressions.
Flatten removes nested occurrences of a function.
You can use
Flatten to "splice" sequences of elements into lists or other expressions.
You can use
Flatten to implement the mathematical property of associativity. The function
Distribute allows you to implement properties such as distributivity and linearity.
Distribute[
f[
a+
b+
...,
...]]
distribute f over sums to give
Distribute[
f[
args],
g]
distribute f over any arguments which have head g
Distribute[
expr,
g,
f]
distribute only when the head is f
Distribute[
expr,
g,
f,
gp,
fp]
distribute f over g, replacing them with fp and gp, respectively
Applying distributive laws.
This "distributes" over .
Here is a more complicated example.
In general, if
f is distributive over
Plus , then an expression like can be "expanded" to give . The function
Expand does this kind of expansion for standard algebraic operators such as
Times .
Distribute allows you to perform the same kind of expansion for arbitrary operators.
Expand uses the distributivity of
Times over
Plus to perform algebraic expansions.
This applies distributivity over lists, rather than sums. The result contains all possible pairs of arguments.
This distributes over lists, but does so only if the head of the whole expression is .
This distributes over lists, making sure that the head of the whole expression is . In the result, it uses in place of
List , and in place of .
Related to
Distribute is the function
Thread . What
Thread effectively does is to apply a function in parallel to all the elements of a list or other expression.
Thread[
f[{
a1,
a2},{
b1,
b2}]]
thread f over lists to give
Thread[
f[
args],
g]
thread f over objects with head g in args
Functions for threading expressions.
Here is a function whose arguments are lists.
Thread applies the function "in parallel" to each element of the lists.
Arguments that are not lists get repeated.
As mentioned in
"Collecting Objects Together", and discussed in more detail in
"Attributes", many built-in
Mathematica functions have the property of being "listable", so that they are automatically threaded over any lists that appear as arguments.
Built-in mathematical functions such as
Log are listable, so that they are automatically threaded over lists.
Log is, however, not automatically threaded over equations.
You can use
Thread to get functions applied to both sides of an equation.
Outer[
f,
list1,
list2]
generalized outer product
Inner[
f,
list1,
list2,
g]
generalized inner product
Generalized outer and inner products.
Outer takes all possible combinations of elements from and , and combines them with
f.
Outer can be viewed as a generalization of a Cartesian product for tensors, as discussed in
"Tensors".
Outer forms all possible combinations of elements, and applies to them.
Here
Outer produces a lower-triangular Boolean matrix.
You can use
Outer on any sequence of expressions with the same head.
Outer , like
Distribute , constructs all possible combinations of elements. On the other hand,
Inner , like
Thread , constructs only combinations of elements that have corresponding positions in the expressions it acts on.
Here is a structure built by
Inner .