How is dividing a polynomial by a binomial similar to or different from the long division you learned in elementary school? Can understanding how to do one kind of division help you with understanding the other kind? What are some examples from real life in which you might use polynomial division?

Long division for numbers and polynomials are basically the same thing. I think that long division should not be taught in primary school as almost no students in primary school understand why it works.

Long division is only practical if you have paper and pencil. So, you wouldn't want do it if you are in a shop and need to do a quick approximate division in your head to compare prices.

I think that in today's world long division is only a practical technique for algebra and calculus problems involving polynomials or series expansions. And then only if you have to compute a few terms.

If you have to divide two numbers, then you can just use a calculator or a computer. If you happen to be somewhere where you don't have access to a calculator or computer, you usually do not have access a desk with paper and pencil on which you can do long division either.

So, this is why I really do not understand why long division is taught in primary school at all.

The long division process gives you decimal by decimal but that comes at the expense of the computational efficiency. In case of polynomials you get the correct coefficients one by one.

A more practical division algorithm uses the Newton's method. This works as follows. Suppose we want to compute
x = 1/q. Then x satisfies the equation:

1/x - q = 0

You can solve this equation by iteration using Newton's method, se here:

http://en.wikipedia.org/wiki/Newton's_method

So, we take

f(x) = 1/x - q

and then nth approximation of the zero is found by iteration:

x_{n+1} = x_{n} - f(x_n)/f'(x_n) =

x_{n} - (1/x_n - q)/(-1/(x_n)^2) =

2x_n -q x_n^2

The advantage of this algorithm is that, unlike in case of long division, the interation step here does not involve any (trial) divisions. Also, in each step the number of significant digits doubles, while in case of long division you only get one significant digit per step.

So, to compute a million digits only requires about twenty steps of the algorithm, if your first guess is accurate to one significant digit. In case of long division, you need to go through a million separate steps.

The algorithm also works in case of polynomials. If p(x) = 1/(q(x)), then the algorithm yields approximations
p_n(x):

P_{n+1}(x) = 2 P_{n}(x) - Q(x)(P_n(x))^2

The number of correct coefficients in the polynomial doubles in each interation. E.g., we can compute 1/(1-x) by putting Q(x) = 1-x. We take the first approximation to be P_0(x) = 1

We then get:

P_1(x) = 2 P_0(x)-(1-x) (P_0(x))^2=

2 - (1-x) = 1+x

P_2(x) = 2 P_1(x) - (1-x)(P_1(x))^2 =

2+2x - (1-x)(1+x)^2 =

2 + 2 x - (1-x^2)(1+x) =

2 + 2 x - 1 - x + x^2 + x^3 =

1 + x + x^2 + x^3

Efficient division algorithms such as this form the basis of computer algebra programs. They are used to compute seris expansions of functions. To see what use a division algorithm is, consider computing the series expansion of g(x) = Log(f(x)), where f(x) is a given function whose series expansion is known (e.g. f(x) could be cos(x)). The the derivative of g(x) is given by:

g'(x) = f'(x)/f(x)

So, you just need to compute 1/(f(x)) using the above division algorithm and then multiply that by f'(x). You then integrate the expansion term by term.

To compute g(x) = exp(f(x)), you simply solve the equation:

f(x) = Log(g(x))

by starting with a trial g(x) and using Newton's method again. Each step in that iteration then involves the above method of cmputing the logarithm which involves the division algorithm.

Like in case of the division algorithm, Newton's method to get an improved estimate x for the equation
y = Log(x) also does not involve any divisions:

x_(n+1) = x_n - x_n[Log(x_n) - y] =

(1+y)x_n - x_n Log(x_n)

So, both the logarithm and the exponential function can be computed very efficiently. And that's all you need in practice, because a large class of functions can be expressed using compositions of the logarithm and the exponential function only.

Computer algebra systems can the give you the billionth term of a series expansion of some complicated function in just a few dozen steps. Taylor's folmula for the term would involve the billkionth derivative. So, this means that you can use it to effienctly compute derivatives of functions. This is indeed how computer algebra systems compute high order derivatives of functions.

I don't think that it is about the math that is the reason children are taught math. I believe that it has to do with the part of the brain that working mathematical concepts come from. I also believe that it has something to do with "solving" which I believe also comes from the same part of the brain.

Dividing a polynomial by a binomial is similar to long division in elementary school in that you are dividing one expression (the dividend) by another expression (the divisor) to find the quotient. However, there are also some differences.

In long division, you divide numbers by numbers, whereas in polynomial division, you divide polynomials (algebraic expressions) by polynomials. The process involves dividing the highest degree term of the dividend by the highest degree term in the divisor and then performing subsequent multiplication and subtraction to obtain the next term of the quotient.

Understanding long division can be helpful in understanding polynomial division because it provides a foundation for understanding the concept of division and the steps involved. Both methods involve breaking down a larger expression into smaller parts and evaluating each part until the entire expression is divided.

Polynomial division is used in various real-life applications, such as:

1. Finance: When calculating loan payments or interest rates, polynomial division may be used to divide the polynomial representing the total loan amount by the binomial representing the number of payment periods.

2. Engineering: In circuit analysis, polynomial division can be used to simplify complex mathematical equations that model electrical circuits.

3. Physics: In physics, polynomial division may be used to divide polynomials that represent physical quantities in equations, such as dividing displacement by time to find velocity.

4. Data analysis: Polynomial division can be used in curve fitting or regression analysis to divide a given set of data points by a polynomial function to find the best fit curve.

Overall, understanding one kind of division, such as long division, can help in understanding polynomial division by providing a foundation in the concept of division and the steps involved, but there are specific techniques and rules unique to polynomial division that need to be learned separately.

Dividing a polynomial by a binomial is similar to long division in elementary school in that both involve breaking down a larger number or expression into smaller parts. However, there are some differences between the two.

In long division, you divide a number, such as 348, by a single-digit divisor, like 4. You start by dividing the most significant digit (3) by the divisor (4) to get the quotient (0) and the remainder (3). Then, you bring down the next digit (4) and continue the process until you have divided all the digits.

In polynomial division, you divide a polynomial expression by another polynomial expression. For example, you might divide x^3 + 2x^2 + 5x + 6 by x + 2. Instead of dividing digits, you divide terms with variables (like x^3, x^2, x, and constants) by another polynomial. The goal is still to find the quotient and remainder.

Understanding long division can help you with polynomial division because both processes involve a similar concept of dividing and finding the quotient and remainder. The steps involved in both methods are quite similar, including dividing the highest power of the polynomial by the highest power of the divisor, subtracting, and bringing down the next term.

In real life, polynomial division is commonly used in various fields such as physics, engineering, and economics. For instance:

1. Finance: Polynomial division can be used to model financial situations involving investments, loans, or mortgages. By dividing the polynomial expressions representing cash flows or interest rates, one can analyze and evaluate the future value or cost of investments or loans.

2. Engineering: Polynomial division is utilized in signal processing, where signals are represented as polynomials. Dividing these polynomials helps engineers analyze and manipulate signals in different systems.

3. Computer graphics: Polynomial division is used in computer graphics algorithms, particularly in curve and surface modeling. Dividing polynomials helps generate smooth curves and surfaces.

Overall, understanding how to divide polynomials can provide you with problem-solving skills applicable in various real-life scenarios, especially in fields involving mathematical modeling and analysis.