flyingpig Messages 2,574 Reaction score 1 Thread starter May 13, 2011 #1 Homework Statement I've been trying to plot Plot[x^2/4 - ln[x]/2, {x, 0, 5}] And it keeps showing me a blank graph. I did it on Wolframalpha and it worked.
Homework Statement I've been trying to plot Plot[x^2/4 - ln[x]/2, {x, 0, 5}] And it keeps showing me a blank graph. I did it on Wolframalpha and it worked.
phyzguy Science Advisor Messages 5,318 Reaction score 2,403 May 13, 2011 #2 A blank graph means it didn't understand something in your expression. In this case it is ln[x], which needs to be Log[x]. Try: Plot[x^2/4 - Log[x]/2, {x, 0, 5}]
A blank graph means it didn't understand something in your expression. In this case it is ln[x], which needs to be Log[x]. Try: Plot[x^2/4 - Log[x]/2, {x, 0, 5}]