When that happens I find a very useful trick is to temporarily replace Plot with Table, like this:
Plot[x^2,{x,1,3}]
turns into
Table[x^2,{x,1,3}]
and then look at the contents of that table.
At least for me that always points out what I need to know.