3

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).

  • Fantastic, that works - thanks! Want to add it as an answer? I also posted the question here if you'd like to answer it there as well: https://webapps.stackexchange.com/q/111883/171236 – DyedPurple Nov 16 '17 at 14:28

1 Answers1

1

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

Moo
  • 11,311