Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

hello i need to make a c++ program with long division of polynomial, in that que

ID: 3716041 • Letter: H

Question

hello i need to make a c++ program with long division of polynomial, in that question it said in yellow numerical implementations are not allowed what does it mean ?

thanks

You will be required to construct an algorithm to perform long division analytically. Numerical implementations are not allowed. You will also be required to perform long division using two different methods. Using the first method, the polynomial coefficients will be stored into a dynamic array where the index of the array is related to the degree of the polynomial term, eg. the polynomial 10x7 + 3x5-5x2 + 4 is to be stored into a dynamic array as

Explanation / Answer

There is a whole part of mathematics termed as Numerical Mathematics, that uses some Numerical Methods to calculate or evaluate the equation or formulae required.

To solve polynomials the Numerical Mathematics uses the mathematics designed by several mathematicians, the methdos can be named as

The idea behind the numerical mathematics, is to develop such systems that helps the machines to learn the complex mathematics (in terms of machine, such as differentiation, integration, solution of differential equations, solution of polynomial equatons etc.).

Since you are not aware of such numerical implementations, you can use traditional method of solving the polynomial equations using the linear algebra