I'm learning a MIT Session about computation complexity
At about 6:26 into the video linked above, the speaker says "basically, we look over here at the polynomial function." The link starts at 6:21.
A polynomial function is usually in this form
$f(x)= a_{n}x^{n}+a_{n-1}x^{n-1}+\cdots +a_{2}x^{2}+a_{1}x+a_{0}$
where n is a non-negative integer and a0, a1, a2, ..., an are constant coefficients.
When considering $$f(n) = n \log n$$ a polynomial function, there is only one term which has a coefficient of 1. Is my understanding correct?
I know how to count the degree of a regular polynomial function. For example, the degree of the polynomial function $f(x) = 5x^{2} + x$ is 2.
What's the degree of the polynomial function $f(n) = n \log n$?
A few seconds later, the speaker says "… the log factor is smaller than a polynomial factor." I guess "the log factor" refers to $\log n$ though I can't even make a guess about what "polynomial factor" refers to.
