Mathematica not plotting for me

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
2 replies · 18K views
flyingpig
Messages
2,574
Reaction score
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.
 
Physics news on Phys.org
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}]