I'm wanting to create a program that graphs polynomials...One thing I don't understand, is how to create the points from the polynomial given.

Say I am given this:

5x^5 + 4x^4 + 3x^3 + 2x^2 + 1x + 1

how would I create coordinates out of this? All the user will be able to do, is give the coeficents in the polynomial..

So, just this:

5x^5 --- how could you get x,y coordinates out of that?