Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Addition of two positive integers takes O(k) time by the standard addi- tion algorithm, with k the total length of the representation in binary

 

Addition of two positive integers takes O(k) time by the standard addi- tion algorithm, with k the total length of the representation in binary of the integers. The following recursive function M defines multiplication, X M(x,y) = 2* M(x,y/2) for y = 1 for y even x+2* M(x, (y-1)/2) for y odd and not 1 for positive integers x and y. For instance, M(6,5) = 6+2 * M(6, 2) = 6+2 * 2 * M(6, 1) = 6+2*2*6 = 30. Show that multiplication is in P-time by analyzing this algorithm. The run time will be in Big-Oh notation as a function of k, the total length of the representation in binary of the numbers.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introductory Chemistry version 1.0

Authors: David W. Ball

1st edition

1453327657, 978-1453327654

More Books

Students also viewed these Computer Network questions