• No results found

POLYNOMIAL DIVISION VIA TEMPLATE MATRIX

N/A
N/A
Protected

Academic year: 2020

Share "POLYNOMIAL DIVISION VIA TEMPLATE MATRIX"

Copied!
6
0
0

Loading.... (view fulltext now)

Full text

(1)

International Research Journal of Mathematics, Engineering and IT

ISSN: (2349-0322) Impact Factor- 5.489, Volume 5, Issue 9, September 2018

Website- www.aarf.asia, Email : [email protected] , [email protected]

POLYNOMIAL DIVISION VIA TEMPLATE MATRIX

Feng Cheng Chang

ALLWAVE CORPORATION / LOS ANGELES, CALIFORNIA, USA

ABSTRACT

The division of a pair of giving polynomials to find its quotient and remainder is derived by applying the convolution matrix. The process of matrix formulation with a template matrix is simple, efficient and direct, comparing to the familiar classical longhand division and synthetic division. Typical numerical examples are provided to show the merit of the approaches.

KEYWORDS - Polynomial division; Longhand division; Synthetic division; Convolution matrix.

INTRODUCTION AND FORMULATION

The division of two univariate polynomials to find the quotient and remainder is expressed as

( ) ( )

( )

( ) ( )

b x r x q x a x = +a x

or

( ) ( ) ( ) ( )

b x =a x q x +r x

where b(x) and a(x) are the given dividend and divisor of degrees n and m, n , and q(x) and r(x) are the resulted quotient and remainder of degrees n – m and m – 1 or less, respectively,

m

© Associated Asia Research Foundation (AARF)

A Monthly Double-Blind Peer Reviewed Refereed Open Access International e-Journal - Included in the International Serial Directories.

(2)

1

0 1 1

( ) n n n n

b x =b x +b x − +""+b x +b 1

0 1 1

( ) m m m m

a x =a x +a x − +""+a x+a 1

0 1 1

( ) n m n m n m n m

q x =q x − +q x− − +""+q− −x +q

1 2

0 1 2

( ) m m m m

r x =r x − +r x − +""+r x +r 1

Then the coefficients of xA in both side of polynomial division equation after substituting of the expansion forms of b(x), a(x) and q(x), r(x) will give the following relation:

0 1 1 1 1 0 (n m 1), 0,1, ,

bA = a qA +a qA +""+a qA +a qA +rA− − + A= ""n

A

m r

# # #

n

where it is understood that

0, , 0, , and 0, , 0, 0.

bA = A>n aA = A>m qA = A> −n m rA = <

The polynomial division is then written in the convolution matrix form [1,2] as,

0 0 0

0

0

1 0

0

1

1 n m

m

n m

b a q

a q

r a

b a

⎡ ⎤ ⎡ ⎤ ⎡ ⎤

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎢ ⎥ = ⎢ ⎥ ⎢ ⎥

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎢ ⎥ ⎢ ⎥ ⎢ ⎥

⎣ ⎦ ⎣ ⎦ ⎣ ⎦

# # % % #

# # % % #

# #

# # #

# # %

# % # %

# % # %

The square matrix of this linear algebraic equation is non-singular, the unknown vector can thus be uniquely obtained, and must be computed recursively from top to bottom. It follows that the desired coefficients may also be computed by the following formulas:

1

0 max(0, )

( 1)

max(0, )

( ) , 0, ,

( ) , 1, ,

/

k

k k k

k m n m

k n m k k

k m

q b a q a k n m

r b a q k n m

= −

− − + −

= −

= − = −

= − = − +

A A A

A A A

"

"

Applying the relationship among all of these entries, the polynomial division manipulation may further be caste into a template matrix M of order (n+1) x 4:

© Associated Asia Research Foundation (AARF)

A Monthly Double-Blind Peer Reviewed Refereed Open Access International e-Journal - Included in the International Serial Directories.

(3)

0 0 0

0

1

=

n m

m

n m

b a q

q r a

b r

M

− ⋅

⎡ ⎤

⎢ ⎥

⎢ ⋅ ⎥

⎢ ⎥

⎢ ⎥

⎢ ⎥

⎢ ⎥

⋅ ⋅

⎢ ⎥

⎢ ⎥

⎣ ⎦

# # #

# # #

# #

# #

# #

# #

# #

A computer routine in MATLAB for the template matrix approach is presented. Inputs b and a, and outputs q and r are, respectively, the coefficient vectors of b(x), a(x), and q(x) and r(x). Also the template matrix is denoted as M.

function [q,r,M] = poly_div_M(b,a) %

% Polynomial division -- via template matrix M. % Given b(x) and a(x) find q(x) and r(x) in % b(x) = a(x)*q(x) + r(x).

% Similar to MATLAB built-in function: 'deconv.m'. % F C Chang 09/18/18

%

n = length(b)-1; m = length(a)-1;

if n < m, q = 0; r = b; M = 0; return, end; M = zeros(n+1,4);

M(1:n+1,1) = b.'; M(1:m+1,2) = a.';

for k = 1:n+1, if k < n-m+2,

M(k,3) = (M(k,1)-M(k:-1:1,2).'*M(1:k,3))/M(1,2); else, M(k,4) = M(k,1)-M(k:-1:1,2).'*M(1:k,3); end; end;

q = M(1:n-m+1,3).'; r = M(n-m+2:n+1,4).';

TYPICAL EXAMPLES WITH REMARKS

For given

© Associated Asia Research Foundation (AARF)

A Monthly Double-Blind Peer Reviewed Refereed Open Access International e-Journal - Included in the International Serial Directories.

Page | 14

7

8 7 6 5 4 3 2

5 4 3 2

( ) 4 5 7 6 2 3 ( ) 3 7 5 4 2

b x x x x x x x x x

a x x x x x x

= + − + − + + − +

(4)

in

( ) ( ) ( ) ( )

b x =a x q x +r x

we shall find the desired results as

3 2

4 3 2

4 11 64 176 ( )

3 9 27 81

619 533 148 77 215 ( )

81 81 81 81 81

q x x x x

r x x x x x

= + + +

= + − + +

by applying either one of the following approaches:

(1) Longhand polynomial division

64 176 4 11

3 9 27 81

28 20 16 8 4

3 3 3 3 3

25 5

11 1 2

3 3 3 3 3

77 55

11 11 44 22

3 9 9 9 9 9

3 1 7 5 4 2 ) 4 5 1 7 6 1 2 3 7

4

2 3 7

+ + + +

+ − + − + + + − + − + + − +

+ + − + − +

+ + + − − + − +

+ + − + − +

64 80 61 29 4

9 9 9 9 9

64 64 448 320 256 128

9 27 27 27 27 27

176 265 233 244 209 27 27 27 27 27 176 176 1

27 81

3 7

7

+ + − + − − +

+ + − + − +

+ + − + − +

+ + − 232 880 704 352 81 81 81 81 619 533 148 77 215 81 81 81 81 81

+ − +

+ + − + +

(2) Synthetic polynomial division

64 176

1 4 11

3 3 9 27 81

7 28 77 448 1232

3 3 9 27 81

5 20 55 320 880

3 3 9 27 81

16 256 704

4 44

3 3 9 27 81

8 128 352

2 2

3 3

64 176 619 533 148 77 215 11

3 9 27 81 81 81 81 81

4 5 1 7 6 1 2 3

4

2

9 27 81

7

+ + − + − + + − +

− − − − −

+ + + + +

− − − − −

+ + + +

− −

+

− − −

+ + + + + + − + +

© Associated Asia Research Foundation (AARF)

A Monthly Double-Blind Peer Reviewed Refereed Open Access International e-Journal - Included in the International Serial Directories.

(5)

(3) Convolution polynomial division 4 3 11 9 64 27 176 81 619 81 533 81 148 81 77 81 215 81 4 3

5 1 3

1 7 1 3

7 5 7 1 3

6 4 5 7 1 1

1 2 4 5 7 1

2 2 4 5 1

3 2 4 1

7 2 + + + 1 ⎡ ⎤ ⎡ ⎤ ⎡ ⎤ ⎢ ⎥ ⎢+ ⎥ ⎢+ + ⎥ + ⎢ ⎢ ⎥ ⎢ ⎥ ⎢ ⎢− ⎥ ⎢− + + ⎥ + ⎢ ⎢+ ⎥ ⎢+ − + + ⎥ + ⎢ ⎢ ⎥ ⎢ ⎥ ⎢ ⎢=− + − ++ ⎢ ⎢ ⎥ ⎢ ⎥ + + + − + − ⎢ ⎥ ⎢ ⎥ ⎢ ⎢+ ⎥ ⎢ + − + ⎥ − ⎢ ⎢ ⎥ ⎢ ⎥ + − + − ⎢ ⎢ ⎥ ⎢ ⎥ ⎢ ⎢+ ⎥ ⎢ + ⎥ + ⎢ ⎥ ⎢ ⎥ ⎢ ⎣ ⎦ ⎣ ⎦ ⎣ ⎦ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥ ⎥⎥

(4) Polynomial division template matrix --- after run [q,r,M] = polydivM(b,a) on MATLAB.

4 3 11 9 64 27 176 81 619 81 533 81 148 81 77 81 215 81

4 3 0

5 1 0

1 7 0

7 5 0

6 4 0

M =

1 2 0

2 0 0

3 0 0

7 0 0

+ + + ⎡ ⎤ ⎢ + + + ⎥ ⎢ ⎥ ⎢ − − + ⎥ ⎢ + + + ⎥ ⎢ ⎥ ⎢ + ⎥ ⎢ ⎥ + + + ⎢ ⎥ ⎢ + ⎥ ⎢ ⎥ − + ⎢ ⎥ ⎢ + + ⎥ ⎢ ⎥ ⎣ ⎦

Comparing of the approaches in this typical example, we found that the polynomial division template approach is much simple and effective. The desired quotient and remainder are readily computed without calculating any intermediate data as those in the familiar classical longhand polynomial division and synthetic polynomial division [3,4].

REFENCES

1 B. Dayton, “Polynomial GCDs by linear algebra,” Theory of Equations, Northeastern

Illinois University, www.neiu.edu/~bhdayton, 2004.

2 F. C. Chang, “Polynomial division by convolution,” Applied Mathematics E-Notes, 11,

2011, 249-254.

© Associated Asia Research Foundation (AARF)

A Monthly Double-Blind Peer Reviewed Refereed Open Access International e-Journal - Included in the International Serial Directories.

(6)

© Associated Asia Research Foundation (AARF)

A Monthly Double-Blind Peer Reviewed Refereed Open Access International e-Journal - Included in the International Serial Directories.

Page | 17

3 L. Zhou, “Short division of polynomials,” The college Mathematics Journal, 40, 2009,

44-46.

4 D. Bini and V. Pan, “Polynomial division and its computational complexity,” Journal of

References

Related documents

If F is infinite, then any polynomial of degree at most n is uniquely determined by its values at n + 1 distinct points of F... Then the remainder and the quotient of f by g are

During the limited warranty period, NeXT’s direct customers and customers purchasing through nonservicing resellers receive NeXT’s standard next-business-day on-site warranty service

The Remainder Theorem tells you that synthetic division can be used to evaluate a polynomial function.. That is, to evaluate a polynomial function when divide by The remainder

Linear dependent columns of D form a monomial basis of R Definition does provide extra constraint but still not-unique.. Introduction Multivariate Polynomial Division

coastline produced by a positive, 0.5 m amplitude, 20 min period tsunami in a non-canyoned margin.. left stripe and in a margin carved by a 10 km incised, 90º-oriented canyon

Topics include polynomial arithmetic, synthetic division, zeroes of polynomials, systems of linear equations, matrices and matrix multiplication.. The course is designed to

Every individual, associations, public entities and organizations with legal personality shall have the right to request for correction, reply or rectification of an article

The objective of centralised stroke care in London was to provide acute stroke services for the first 72 hours to patients in eight dedicated London HASUs, leading