Expressions corresponding to notebooks. Here is a simple Mathematica notebook. Here is the expression that corresponds to this notebook.
The built-in functions in Mathematica operate in a wide variety of ways. But many of the mathematical functions share an important approach: they are set up so as to reduce ...
When you define a complicated function, you will often want to let some of the arguments of the function be "optional". If you do not give those arguments explicitly, you ...
This User Guide is divided into two parts, reflecting the traditional distinction between the two ways of using Mathematica with external programs. The first use is to extend ...
ExampleData["type"] gives a list of names of examples of the specified type.ExampleData[{" type", " name"}] gives the default form of the named example of the specified ...
CountryData["tag", " property"] gives the value of the specified property for the country, country-like entity, or group of countries specified by " tag".CountryData["tag", ...
The Mathematica function NDSolve is a general numerical differential equation solver. It can handle a wide range of ordinary differential equations (ODEs) as well as some ...
Function[body] or body & is a pure function. The formal parameters are # (or #1), #2, etc. Function[x, body] is a pure function with a single formal parameter x. ...
MenuView[{lbl_1 -> expr_1, lbl_2 -> expr_2, ...}] represents an object in which selecting the menu item with label lbl_i displays expr_i. MenuView[{lbl_1 -> expr_1, lbl_2 -> ...
If you make a definition like f[x_]:=x Sin[x], Mathematica will store the expression x Sin[x] in a form that can be evaluated for any x. Then when you give a particular value ...