Plot multiple functions with log axis on Wolfram Alpha

816 Views Asked by At

I want to plot two functions on the same graph using a log y axis on Wolfram Alpha, but I can't find a way to do this.

I've tried things like log plot 2^(3x-1), e^x, x=1..10, but this doesn't work (despite plot 2^(3x-1), e^x, x=1..10 working perfectly fine).

1

There are 1 best solutions below

0
On BEST ANSWER

Try:

  logplot {2^(3x-1), e^x}, (x, 1, 10)

Here it is as a link on WA

Here it is as a Mathematica command

  LogPlot[{2^(-1 + 3*x), E^x}, {x, 1, 10}, 
   PlotLabels -> Placed["Expressions", Above], ImageSize -> Large]

Here is the output

enter image description here