Plot Y-Range on Mathematica

20.9k Views Asked by At

I have a plot that I would like to slightly manipulate in Mathematica. Here is the code I am entering:

Plot[{x, 2^x, log_2(x)}, {x, -1, 3}]

As you can see $x$, $2^x$, and $log_2(x)$ are all plotted on a basic plot between $x = -1$ and $x = 3$. The x-range was easy to restrict, but how can I also restrict the y-range?

Thank you for your time.

1

There are 1 best solutions below

0
On BEST ANSWER

Ahh... got it. Use PlotRange -> {lowerY, upperY}

Plot[{x, 2^x, Log2[x]}, {x, -1, 3}, PlotRange -> {-2, 4}]