How to properly read the … operator in this context?

907 Views Asked by At

A polynomial expression can be written in this form $$a_nx^n+a_{n-1}x^{n-1}+\dots+a_2x^2+a_1x+a_0$$ Therefore, this is a polynomial $$5x^4+3x^3+4x^2+3x+2$$ I understand this fairly well, because $n=4$. I know that when $n=2$, it is still a polynomial. $$4x^2+3x+2$$ But if I attempt to use the formula for $n=2$, I will end up with something like this. $$4x^2+3x^1+4x^2+3x+2$$ Do you see my reasoning? I want to have three values of $a$ such as $a_0=2,a_1=3,a_2=4$.

The above form of the polynomial expression using the $\ldots$ operator appear to be requiring at least 4 $+$ symbols and the duplication of $a_1, a_2$ when $n=2$.

I do not completely understand the usage of the $\dots$ operator.

4

There are 4 best solutions below

0
On BEST ANSWER

Ellipses ($\ldots$) are not an operator: they're a piece of informal mathematical notation, meaning "fill in the pattern in the obvious way." As you've observed, in some cases the $\ldots$ can actually mean remove some terms if $n$ is too small: but the author is assuming that the definition is clear enough that you'll be able to figure out these corner cases.

You might object that this is sloppy notation and that the author should have been more careful or rigorous. On the one hand, if the author's definition is causing confusion, you may be right; on the other, math is all about communication, and sometimes a little bit of informality communicates an idea more clearly than full rigor.

0
On

That's not an operator. It's just a placeholder for the other items in the list that follow the same pattern.

0
On

Normally, $\dots$ is used to omit symbols where there are several related instances of them. It connects some explicitly written-down expressions and trusts that the reader knows how to interpret the omitted expressions from context.

However, this is precisely where it can fail by presenting misleading information or causing ambiguity. A humourous Bell Labs memorandum by E. R. Berlekamp asked

What are the next terms of this sequence? $$2,3,5\dots$$

There are lots of answers just for the fourth term: 7 (primes), 8 (Fibonacci), 10 (sum of all preceding terms), etc. Berlekamp quipped:

It is a remarkable fact that it is often possible to determine a subject's occupation from his answer to a simple question of mathematical induction.

The generic polynomial form presented in this question is no different. The inclusion of an $x^2$ term suggests that linear polynomials do not follow this form even though they do. For this reason, use of $\dots$ is sometimes discouraged in article writing in favour of sigma/pi/set-builder notation, in which the polynomial expression would be written $\sum_{i=0}^na_ix^i$.

0
On

$$P_n=a_nx^n+a_{n-1}x^{n-1}+\dots+a_2x^2+a_1x+a_0$$ is the general form.

For $n=0$ we are at the last term that is $$P_0=a_0$$

For $n=1$ we are at the last two terms that is $$P_1= a_1x +a_0$$

For $n=2$ we are at the last three terms that is $$P_2= a_2 x^2+a_1x +a_0$$

And so forth.

No duplication is intended.