I am trying to graph a few linear functions and restrict their x and y ranges from 0 to 50, so I use the command:
Plot[{x, 4*x, 3*x/2, (4/3)*(x - 10)}, {x, 0, 50}, PlotRange (backslash)[Rule] {0, 50}]
However, Mathematica is interpreting this as Plot[x^2, {x, -1.2, 1.2}]. It's probably not a problem with any of the functions, as without PlotRange, it seems to work fine.