Create a Slide Show Create a Lecture Notebook Style and Format Notebooks
Mathematica includes a variety of non-printing characters, some used to fine-tune layout, and others used to define precise syntactic interpretations while maintaining the ...
In Mathematica, a palette is just a notebook with a collection of controls such as buttons. A uniquely powerful consequence of Mathematica's unified design is that a symbolic ...
x /= c divides x by c and returns the new value of x.
HoldPattern[expr] is equivalent to expr for pattern matching, but maintains expr in an unevaluated form.
PrecedenceForm[expr, prec] prints with expr parenthesized as it would be if it contained an operator with precedence prec.
SequenceHold is an attribute that specifies that Sequence objects appearing in the arguments of a function should not automatically be flattened out.
SyntaxQ
(Built-in Mathematica Symbol) SyntaxQ["string"] returns True if the string corresponds to syntactically correct input for a single Mathematica expression, and returns False otherwise.
When Mathematica cannot give you an explicit result for an integral, it leaves the integral in a symbolic form. It is often useful to manipulate this symbolic form. ...
In some cases you may need to specify pattern sequences that are more intricate than things like x__ or x..; for such situations you can use PatternSequence[p_1,p_2,…]. ...