Why don't the first two contour plots show the equation?
Thanks, Henrik Schachner. That works. I'm reading about Evaluate now.
Jay,
ContourPlot has the attribute HoldAll:
ContourPlot
HoldAll
Attributes[ContourPlot] (* Out: {HoldAll,Protected,ReadProtected} *)
So, you need Evaluate:
Evaluate
eq1 = x^2 - y (x - 1) == 0; ContourPlot[Evaluate@eq1, {x, -5, 5}, {y, -5, 5}]