Converting between symbols and their names. Here is the symbol x. Its name is a string.
Partition[list, n] partitions list into non-overlapping sublists of length n. Partition[list, n, d] generates sublists with offset d. Partition[list, {n_1, n_2, ...}] ...
Finding elements that match a pattern. This gives the elements of the list which match the pattern x^_. Here is the total number of elements which match the pattern.
Sort
(Built-in Mathematica Symbol) Sort[list] sorts the elements of list into canonical order. Sort[list, p] sorts using the ordering function p.
If you have a list of elements, it is often important to be able to apply a function separately to each of the elements. You can do this in Mathematica using Map. This ...
All expressions in Mathematica are ultimately built from a small number of distinct types of atomic elements.
In Mathematica's standard notebook interface, you are directly giving input and getting output every time you press Shift+Enter. Although much more rarely needed than in more ...
At the core of Mathematica is the foundational idea that everything —data, programs, formulas, graphics, documents—can be represented as symbolic expressions. And it is this ...
A foundational idea in Mathematica is that all expressions—whatever they may represent—ultimately have a uniform tree-like structure.
Power series are in many ways the algebraic analog of limited-precision numbers. Mathematica can generate series approximations to virtually any combination of built-in ...