AlgebraicNumberPolynomial[a, x] gives the polynomial in x corresponding to the AlgebraicNumber object a.
Mathematica allows any front end command to be executed programmatically from within the kernel by sending an appropriate front end token. There are tokens for all standard ...
PrintTemporary[expr] prints expr as a temporary cell in a notebook, removing it when the evaluation of the current input line is complete.
A graph with a certain property can often be built starting from another graph. They may be a subgraph of a larger graph, they can be incrementally modified by deleting or ...
ClearAll[symb_1, symb_2, ...] clears all values, definitions, attributes, messages, and defaults associated with symbols. ClearAll["form_1 ", "form_2", ...] clears all ...
Clear
(Built-in Mathematica Symbol) Clear[symbol_1, symbol_2, ...] clears values and definitions for the symbol_i. Clear["form_1", "form_2", ...] clears values and definitions for all symbols whose names match ...
f /: lhs =. removes any rules defined for lhs, associated with the symbol f.
Unset
(Built-in Mathematica Symbol) lhs =. removes any rules defined for lhs.
The replacement operator /. allows you to apply transformation rules to a specific expression. Often, however, you want to have transformation rules automatically applied ...
SequenceAlignment[s_1, s_2] finds an optimal alignment of sequences of elements in the strings or lists s_1 and s_2, and yields a list of successive matching and differing ...