Basic Plotting
| Plot[f,{x,xmin,xmax}] | plot f as a function of x from to  |
| Plot[f,{x,x0,x1,...,xk}] | plot f over a series of segments, potentially breaking the curve at each of the  |
| Plot[{f1,f2,...},{x,xmin,xmax}] | plot several functions together |
Basic plotting functions.
This plots a graph of

as a function of

from 0 to

.
| Out[1]= |  |
You can plot functions that have singularities.
Mathematica will try to choose appropriate scales.
| Out[2]= |  |
The singularities can be omitted from the plot by specifying them in the plot's range.
| Out[3]= |  |
You can give a list of functions to plot. A different color will automatically be used for each function.
| Out[4]= |  |
| Out[5]= |  |
Here is a plot of the solution.
| Out[6]= |  |