Entering Formulas
Special forms for some common symbols.
| Out[1]= |  |
|
Here is the long form of the input.
| Out[2]= |  |
|
You can enter the same input like this.
| Out[3]= |  |
|
Here the angle is in radians.
| Out[4]= |  |
|
Special forms for a few operators. "Operator Input Forms" gives a complete list.
Here the replacement rule is entered using two ordinary characters, as ->.
| Out[5]= |  |
|
This means exactly the same.
| Out[6]= |  |
|
| Out[7]= |  |
|
When you type the ordinary-character form for certain operators, the front end automatically replaces them with the special-character form. For instance, when you type the last three examples, the front end automatically substitutes the
→ character for
->.
The special arrow form → is by default also used for output.
| Out[8]= |  |
|
Some operators with special forms used for input but not output.
Mathematica understands ÷, but does not use it by default for output.
| Out[9]= |  |
|
Many of the forms of input discussed here use special characters, but otherwise just consist of ordinary one-dimensional lines of text.
Mathematica notebooks, however, also make it possible to use two-dimensional forms of input.
| | |
| xy | x^y | power |
 | x/y | division |
 | Sqrt[x] | square root |
 | x^(1/n) | nth root |
f | Sum[f,{i,imin,imax}] | sum |
f | Product[f,{i,imin,imax}] | product |
f x | Integrate[f,x] | indefinite integral |
 | Integrate[f,{x,xmin,xmax}] | definite integral |
xf | D[f,x] | partial derivative |
x, yf | D[f,x,y] | multivariate partial derivative |
| z* | Conjugate[x] | complex conjugate |
| m | Transpose[m] | transpose |
| m | ConjugateTranspose[m] | conjugate transpose |
| expr[[i, j, ...]] | Part[expr,i,j,...] | part extraction |
Some two-dimensional forms that can be used in Mathematica notebooks.
You can enter two-dimensional forms using any of the mechanisms discussed in
"Entering Two-Dimensional Input". Note that upper and lower limits for sums and products must be entered as overscripts and underscripts—not superscripts and subscripts.
This enters an indefinite integral. Note the use of Esc dd Esc to enter the "differential d".
| Out[10]= |  |
|
Here is an indefinite integral that can be explicitly evaluated.
| Out[11]= |  |
|
Here is the usual Mathematica input for this integral.
| Out[12]= |  |
|
Some special characters used in entering formulas. "Mathematical and Other Notation" gives a complete list.
You should realize that even though a summation sign can look almost identical to a capital sigma it is treated in a very different way by
Mathematica. The point is that a sigma is just a letter; but a summation sign is an operator which tells
Mathematica to perform a
Sum operation.
Capital sigma is just a letter.
| Out[13]= |  |
|
A summation sign, on the other hand, is an operator.
| Out[14]= |  |
|
Much as
Mathematica distinguishes between a summation sign and a capital sigma, it also distinguishes between an ordinary
d, the "partial d"

that is used for taking derivatives, and the special "differential d"

that is used in the standard notation for integrals. It is crucial that you use the differential

—entered as
Esc dd Esc—when you type in an integral. If you try to use an ordinary
d,
Mathematica will just interpret this as a symbol called
d—it will not understand that you are entering the second part of an integration operator.
This computes the derivative of xn.
| Out[15]= |  |
|
Here is the same derivative specified in ordinary one-dimensional form.
| Out[16]= |  |
|
This computes the third derivative.
| Out[17]= |  |
|
Here is the equivalent one-dimensional input form.
| Out[18]= |  |
|