Plots in 2D
(The interval notation of {x,min,max} defines the domain.)In[1]:= |
Out[1]= |
In[2]:= |
Out[2]= |
In[1]:= |
Out[1]= |
In[2]:= |
Out[2]= |
In[1]:= |
Out[1]= |
QUICK REFERENCE: Function Visualization »
QUICK REFERENCE: Graphics Options & Styling »
In[1]:= |
⨯
Plot[x^2 + 2 x + 1, {x, -10, 10}] |
Out[1]= |
In[2]:= |
⨯
RegionPlot[Reduce[{x^2 + y < 2 && x + y < 1}], {x, -3, 3}, {y, -3, 3}] |
Out[2]= |
In[1]:= |
⨯
Plot[{x^3, x^2, x}, {x, -2, 2}, PlotLegends -> "Expressions"] |
Out[1]= |
In[2]:= |
⨯
Plot[1/x, {x, -3, 3}, Filling -> Axis] |
Out[2]= |
In[1]:= |
⨯
Show[{Plot[x^2 + 2, {x, -3, 3}], RegionPlot[2 x > y - 3, {x, -3, 3}, {y, 0, 9}]}] |
Out[1]= |
QUICK REFERENCE: Function Visualization »
QUICK REFERENCE: Graphics Options & Styling »