This project will multiply two polynomials, with one variable (must be represented by x). It must be in the form (if n is a number, and d is the degree of x) nx^d and separating each term must be either a + or -. It can also accept terms in the form of nx, for a degree of 1, or just n for a degree of 0. The resulting polynomial might not be in order, and might not have combined all like terms (though it should have if they are next to each other), but those things are easy enough to do. It's also usually in order if the polynomials were entered in order. When they were, it works best with combining like terms.
This project is mainly for my own use, as multiplying polynomials is always something that takes me a while.