Comment on What would you do?

<- View Parent
gandalf_der_12te@discuss.tchncs.de ⁨1⁩ ⁨day⁩ ago

Polynomials:

They exist because they are efficient to compute. Computers do well with basic arithmetic operations like addition (+) and multiplication (*). The polynomial functions are simply those that you can construct from those two operations, and constant numbers.

Like consider a polynomial like f(x) = 5x^3 + 3x^2 + 2x + 7

What it really says is f(x) = 5*x*x*x + 3*x*x + 2*x + 7 and here you can see how it’s all built from + and *.

This is why polynomials are useful. Because computers have an easy time calculating them. And all modern mathematics is done on computers. All the engineering uses computer simulations, and we want these simulations to run fast on computer hardware, so we make it easy for computer hardware to do. That is why we’re using polynomials wherever we can.


That is how you explain polynomials to 8th graders. No taylor series needed.

source
Sort:hotnewtop