Plot the following functions using their ranges. If a function has special instructions, follow those instructions by using the plot options.
| xx | ||
| red, thickest line possible | ||
| log2x | dashed line, no axes | |
![]() |
constrained scaling |
Solution
> plot(x^x,x=0.1..5);
![[Maple Plot]](../images/plot-01a6.gif)
> plot(sin(2*theta),theta=-2*Pi..2*Pi,color=red,thickness=3);
![[Maple Plot]](../images/plot-01a7.gif)
> plot(log[2](x),x=0..100,linestyle=3,axes=none);
![[Maple Plot]](../images/plot-01a8.gif)
> plot(sqrt(x^(x+1)),x=0..5, 0..50,scaling=constrained);
![[Maple Plot]](../images/plot-01a9.gif)