Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Practice with polynomial multiplication by FFT.

(a) Suppose that you want to multiply the two polynomials x + 1 and x2+1using the FFT. Choose an appropriate power of two, find the FFT of the two sequences, multiply the results component wise, and compute the inverse FFT to get the final result.

(b) Repeat for the pair of polynomials 1+x+2x2and 2 + 3x.

Short Answer

Expert verified
  1. FTT of two sequence: (4,0,0,0)
  2. FTT of two sequence: ( 20, - 5 -i, -2 , - 5 +i )

Step by step solution

01

Solution of part (a)

Multiplication of polynomials by Fast Fourier Transform (FFT):

Fast Fourier Transform (FFT):

The 4×4matrix of FFT is,

localid="1659009189962" M4ω'=11111ωω2ω31ω2ω3ω61ω3ω6ω9.....(1)

The difficult result of a nth fundamental plus unity is,

ω'=e2πin …… (2)

Alternative in Equations, the value of " n " is " 4 " (2). As a result, the value of is

ω'=e2πi4=eπi2

Note: eix=cos(x)+isin(x)

Thus, eπi2has already been prepared in accordance with the information provided:

ω=cosπ2+isinπ2=cos(90)+isin(90)=0+i(1)ω=i...........(3)

Alternative Equation (3) in Equation (1).

M4ω'=11111ii2i31i2i3i61i3i6i9.....(4)

In general, the value of i,i2,i3,i4are,

i=ii2=-1i3=-ii4=1 ...........(5)

The counting value of i6,i9is,

i6=i4×i2=-1i9=i6×i3=i …… (6)

Alternative counting values are i,i2,i3,i4,i6,i9in Equation (4). The FFT matrix is,

M4ω'=11111i-1-i1-11-11-i-1i.....(7)

Polynomial multiplication:

Question now been written in accordance with the information provided.

A(x)=a0+a1x+....+adxd.....(8)

The first polynomial is x + 1 …… (9)

Similarity equations (8) and (9),

a0=1,a1=1,a2=0anda3=0.....(10)

Considering the polynomials into matrix transformation formula..

localid="1659009567989" A=a0a1a2a3 …… (11)

2nd part of the above values of a0,a1,a2,a3 in Equation (11).

A=1100...(12)

The FFT of A ( 1, 1, 0, 0 )is calculated as follows:

FFT of A=M4ω×A..........(13)

Substitute the values M4ωfrom Equation (7) and A from Equation (12) in Equation (13).

=11111i-1-i1-11-11-i-1i*1000

=1+1+0-01+i+0+01-1+0+01-i+0+0FFTofA=2i+10i-1....(14)

The 2nd polynomial is x2+1 …… (15)

equal equations (8) and (15)

a0=1a1=0a2=1........(16)a3=0

Take a look there at formula on converting a polynomial to something like a matrix..

localid="1659011072851" B=a0a1a2a3 …… (17)

Alternative the above values of a0,a1,a2,a3in Equation (17).

B=1010 …… (18)

The FFT of B ( 1,0,1,0) is calculated as follows:

FFTofB=M4×B…… (19)

Within Equations (7), replace all values of Equation (18) with M4(w) the values from Equation (7). (19).

localid="1659067306314" TheFFTofB=11111i-1-i1-11-11-i-1i×1010=1+0+1+01+0-1+01+0+1+01+0+1+0FFTofB=2020............(20)

This polynomial's combination is. X+1and x2 +1 is

Product = (X+1) * (x2 +1)

= x3 + x + x2 +1

= 1 + x + x2+ x3 …… (21)

Let the product of FFT of A and B be P. The product is calculated as shown below:

P = A * B …… (22)

,

Substitute the value of “ A” from Equation (14) and “B” from Equation (20) in Equation (22).

P=2i+10i-1*2020=4000(23)

Inverse FFT:

Use the inverse FFT, which equals Inverse FFT, to get the final result. FFT=1n Mn(w-1) …… (24)

Here, from Equation (3), the value of ω=iThus, the value of ω-1is:

ω-1=(i)-1=cosπ2+isinπ2-1=cos-π2+isin-π2=cosπ2-isinπ2=0-i(1)ω-1=-i..........(25)

To get the value of M4(ω-1), substitute i =-iin Equation (7).

localid="1659067624148" M4(ω-1)=11111-i-1i1-11-11i-1-i…… (26)

The inverse FFT of P is calculated as shown below:

InverseFFT(P)=14PMn(ω-1)…… (27)

Substitute the value of M4(ω-1)from Equation (26), P from Equation (23) in Equation (27).

role="math" localid="1659067795192" InverseFFT(P)=1411111-i-1i1-11-11i-1-i×4000=144444InverseFFT(P)=1111........(28)

Formula (28)'s polynomial reflection of all the above matrix seems to be 1+x+x2+x3.

As a result, this polynomial's composition is 1=x+x2+x3and its FFT is (4,0,0,0) .

02

Solution of part (b)

The first polynomial is 1+x+2x2 …… (29)

Compare equations (8) and (29)

a0= 1

a1= 1

a2= 2

a3= 0 …… (30)

Consider the formula of polynomial to matrix transformation.

A=a0a1a2a3…… (31)

,

Substitute the above values of a0,a1,a2,a3in Equation (31).

A=1120…… (32)

The FFT of A (1,1,2,0)is calculated as follows:

FFTofA=M4ω×A............(33)

Substitute the values M4ω from Equation (7) andA from Equation (32) in Equation (33).

FFTofA=11111i-1-i1-11-11-i-1i×1120=1+1+2+01+i-2+01-1+2+01-i-2+0FFTofA=4i-12-i-1....(34)

The second polynomial is 2+3x…… (35)

Compare equations (8) and (35)

localid="1659069567337" a0=2a1=3a2=0a3=0…… (36)

Consider the formula of polynomial to matrix transformation.

B=a0a1a2a3……(37)

Substitute the above values of a0,a1,a2,a3in Equation (37).

B=2300 .........(38)

The FFT of B ( 2, 3, 0, 0 ) is calculated as follows:

FFTofB=M4ω×B…… (39)

Substitute the values M4(ω)from Equation (7) and B from Equation (38) in Equation (39).

localid="1659070329001" FFTofB=11111i-1-i1-11-11-i-1i×2300=2+3+0+02+3i+0+02-3+0+02-3i+0+0FFTofB=52+3i-12-3i

The product of the polynomial is 1+x+x2and 2+3xis

Product=(1+x+2x2)×(2+3x)=2+3x+2x+3x2+4x2+6x3=2+5x+7x2+6x3......(41)

,

Let the product of FFT of A and FFT of B be P. The product is calculated as shown below:

P=FFTofA×FFTofB…… (42)

Substitute the values of FFT of “A” from Equation (34) and FFT of “B” from Equation (40) in Equation (42).

P=4i-12-i-1×52+3i-12-3i=202+3i2+-2-3i-2-2i-3i2-2-3i=20-2-i-3-2-2+i-3=20-5-i-2-5+i

The inverse FFT of P is calculated as shown below:

Inverse FFT(P) 14PMn(ω-1) …… (44)

Substitute the value of M4(ω-1)from Equation (26), P from Equation (43) in Equation (44).

Inverse of FFT (P) role="math" localid="1659073083704" InverseFFT(P)=1411111-i-1i1-11-11i-1-i×20-5-i-2-5+i=1420-5-i-2-5-i20-i(-5-i)-2-i(-5+i)20-(-5-i)-2-1(-5+i)20+i(-5-i)-(-2)-i(-5+i)=148202824InverseFFT(P)=2576.....(45)

The polynomial representation of the above matrix from Equation (45) is

2+5x+7x2+6x3.

Therefore, the product of the polynomial is 2+5x+7x2+6x3and its FFT is

(20,-5-i,-2,-5+i).

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

In our median-finding algorithm (Section 2.4), a basic primitive is the split operation, which takes as input an array S and a value V and then divides S into three sets: the elements less than V , the elements equal to V , and the elements greater than V . Show how to implement this split operation in place, that is, without allocating new memory.

In Section 1.2.3, we studied Euclid’s algorithm for computing the greatest common divisor (gcd) of two positive integers: the largest integer which divides them both. Here we will look at an alternative algorithm based on divide-and-conquer.

(a) Show that the following rule is true.

gcd(a,b)={2gcd(a2,b2)ifa,bareevengcd(ab2)ifaisodd,bisevengcd(a-b2,b)ifa,bareodd

(b) Give an efficient divide-and-conquer algorithm for greatest common divisor.

(c) How does the efficiency of your algorithm compare to Euclid’s algorithm if a and b are n-bit -bit integers? (In particular, since n might be large you cannot assume that basic arithmetic operations like addition take constant time.)

A kway merge operation. Suppose you have ksorted arrays, each with nelements, and you want to combine them into a single sorted array ofkn elements.

(a)Here’s one strategy: Using the merge procedure from Section 2.3, merge the first two arrays, then merge in the third, then merge in the fourth, and so on. What is the time complexity of this algorithm, in terms of kand n?

(b) Give a more efficient solution to this problem, using divide-and-conquer.

Section 2.2 describes a method for solving recurrence relations which is based on analyzing the recursion tree and deriving a formula for the work done at each level. Another (closely related) method is to expand out the recurrence a few times, until a pattern emerges. For instance, let’s start with the familiar T(n)=2T(n/2)+o(n). Think of o(n) as being role="math" localid="1658920245976" <cnfor some constant , so: T(n)<2T(n/2)+cn. By repeatedly applying this rule, we can bound T(n) in terms of T(n/2), then T(n/4), then T(n/8), and so on, at each step getting closer to the value of T(.) we do know, namely .

T(1)=0(1).

T(n)2T(n/2)+cn2[2Tn/4+cn/2]+cn=4T(n/4)+2cn4[2Tn/8+cn/4]+2cn=8T(n/8)+3cn8[2Tn/16+cn/8]+3cn=16T(n/16)+4cn

.

.

.

A pattern is emerging... the general term is

T(n)2kT(n/2k)+kcn

Plugging in k=log2n, we get T(n)nT(1)+cnlog2n=0(nlogn).

(a)Do the same thing for the recurrence T(n)=3T(n/2)+0(n). What is the general kth term in this case? And what value of should be plugged in to get the answer?(b) Now try the recurrence T(n)=T(n-1)+0(1), a case which is not covered by the master theorem. Can you solve this too?

Given a sorted array of distinct integersA[1,...,n] , you want to find out whether there is an indexi for which A[i]=i. Give a divide-and-conquer algorithm that runs in time O(logn).

See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free