Forms of Input and Output
Here is one way to enter a particular expression.
| Out[1]= |  |
|
Here is another way to enter the same expression.
| Out[2]= |  |
|
With a notebook front end, you can also enter the expression directly in this way.
| Out[3]= |  |
|
Mathematica allows you to output expressions in many different ways.
In Mathematica notebooks, expressions are by default output in StandardForm.
| Out[4]= |  |
|
OutputForm uses only ordinary keyboard characters and is the default for text-based interfaces to Mathematica.
Out[5]//OutputForm= |
| |  |
|
InputForm yields a form that can be typed directly on a keyboard.
Out[6]//InputForm= |
| |  |
|
FullForm shows the internal form of an expression in explicit functional notation.
Out[7]//FullForm= |
| |  |
|
| FullForm[expr] | the internal form of an expression |
| InputForm[expr] | a form suitable for direct keyboard input |
| OutputForm[expr] | a two-dimensional form using only keyboard characters |
| StandardForm[expr] | the default form used in Mathematica notebooks |
Some output forms for expressions.
Output forms provide textual representations of
Mathematica expressions. In some cases these textual representations are also suitable for input to
Mathematica. But in other cases they are intended just to be looked at, or to be exported to other programs, rather than to be used as input to
Mathematica.
TraditionalForm uses a large collection of ad hoc rules to produce an approximation to traditional mathematical notation.
Out[8]//TraditionalForm= |
| |  |
|
TeXForm yields output suitable for export to TeX.
Out[9]//TeXForm= |
| |  |
|
Out[10]//MathMLForm= |
| |  |
|
CForm yields output that can be included in a C program. Macros for objects like Power are included in the header file mdefs.h.
Out[11]//CForm= |
| |  |
|
FortranForm yields output suitable for export to Fortran.
Out[12]//FortranForm= |
| |  |
|
| TraditionalForm[expr] | traditional mathematical notation |
| TeXForm[expr] | output suitable for export to TEX |
| MathMLForm[expr] | output suitable for use with MathML on the web |
| CForm[expr] | output suitable for export to C |
| FortranForm[expr] | output suitable for export to Fortran |
Output forms not normally used for Mathematica input.
"Low-Level Input and Output Rules" will discuss how you can create your own output forms. You should realize however that in communicating with external programs it is often better to use
MathLink to send expressions directly than to generate a textual representation for these expressions.
| • Exchange textual representations of expressions. |
| • Exchange expressions directly via MathLink. |
Two ways to communicate between Mathematica and other programs.