One can use Mathematica to make 2 D and 3 D graphics. It is perhaps the most straightforward and, at the same time, the most complicated section. It is straightforward since all the commands and properties one can find in the Help Browser. However, the complicated part is to find the property one needs among hundreds of similar ones. Below there are only examples of some of the most commongly used graphic features. Moreover, the older versions of Mathematica might have different names and commands. The following pictures are drawn in Mathematica 7. The pictures are mostly self-explanatory and for the useage of unknown functions the reader is referred to the documentation center.
The function Show is used to combine several graphics togather.
Graphics[primitives, options]represents a two-dimensional graphical image (circle, disc, point, line, polygon, ... ).
Animate[Plot[Sin[n x], {x, 0, 2 Pi}, Axes -> False], {n, 1, 3, 1}]
g = ParametricPlot3D[
{x, Cos[t] Sin[x] , Sin[t] Sin[x]},
{x, -Pi, Pi}, {t, 0, 2Pi},
Axes -> False, Boxed -> False]
Graphics[{Arrow[{{0, 0},{1, 1}}],
Hue[0], Arrow[{{.75, .25},{.25, .75}}]}]
Plot[Sin[x], {x, 0, 2Pi},
Epilog -> {Arrow[{{4, .25}, {Pi/2, 1}}],
Text["Here", {4, .15}, {0, -1}]}
]
ContourPlot[x^2 + 2 y^2 == 3, {x, -2, 2},{y,-2,2}]
ContourPlot[{(x^2 + y^2)^2 == (x^2 - y^2),
(x^2 + y^2)^2 == 2 x y}, {x,-2,2},{y,-2,2}
]
RevolutionPlot3D[
Sin[x], {x, 0, 2 Pi}]
RevolutionPlot3D[{1.1 Sin[u], u^2},
{u, 0, 3 Pi/2}, BoxRatios -> {1, 1, 2}]
RevolutionPlot3D[x^2, {x, 0, 1},
RevolutionAxis -> {1, 1, 1}]
One can innsert a plot into a disk:
One can insert an expression in a graphic: