Binary Search Comparison Recurrence Relation: Solve and Prove Solution"

Click For Summary

Homework Help Overview

The discussion revolves around solving and proving a recurrence relation related to the number of comparisons in Binary Search. The original poster presents a specific recurrence relation and attempts to outline a method for solving it.

Discussion Character

  • Exploratory, Assumption checking, Problem interpretation

Approaches and Questions Raised

  • Participants discuss the correctness of the recurrence relation provided, with some questioning whether it is formulated correctly. There are attempts to reformulate the relation and clarify the terms involved. Questions arise regarding the calculation of specific terms based on the recurrence.

Discussion Status

The discussion is ongoing, with participants exploring different interpretations of the recurrence relation. Some guidance is offered regarding the structure of recurrence relations, but no consensus has been reached on the correct formulation or approach to solving it.

Contextual Notes

Participants note the importance of having a clear and correct recurrence relation to proceed with solving the problem. There is also mention of potential constraints in the information provided by the original poster.

Gear2d
Messages
49
Reaction score
0

Homework Statement


Solve and prove your solution for the following recurrence relation for the number of comparisons in Binary Search:

C(21 - 1)=1
C(2i - 1) = 2 + C(2(i+1) - 1)

The Attempt at a Solution



The setup for this would be:

C(n)={ 1, n=1 and 2 + C(2(i+1) - 1), otherwise

From this I would do substitution and guessing, and then prove the guess with induction?
 
Physics news on Phys.org
Are you sure you have your recurrence relation right? Usually the formula for the general term (the i-th term) is given in terms of the previous term, not the next term.
 
I am assuming that is what the teacher wants. Could this be it:

C(n)={ 1, n=1 and C(n/2) + 2, otherwise
 
Gear2d said:
I am assuming that is what the teacher wants. Could this be it:

C(n)={ 1, n=1 and C(n/2) + 2, otherwise


My question is not about what the teacher wants, but instead is about what exactly are you given to work with.

Clearly C(1) = 1 from the given information.
What is C(2) though? There is no way to calculate this according to the recurrence relation you show.
What about C(3)? To get this, you need to know C(7).

A recurrence relation usually gives a formula for the i-th term in the sequence in terms of the (i - 1)st term, and gives you the 1st term. From the recurrence formula you can work through and get C(2), C(3), C(4), and so on.

When I said this earlier, you came up with what looks like a different recurrent formula. At this point I'm less interested in what your teach wants than in what you're given to work with.
 
Could take the log of the inside to get the i th term?

2i-1 - 1 = k (some constant)

Take lg of each side
2i-1 = k +1
i-1 = lg(k+1)

i = lg(k+1) + 1
 
Gear2d said:
Could take the log of the inside to get the i th term?

2i-1 - 1 = k (some constant)

Take lg of each side
2i-1 = k +1
i-1 = lg(k+1)

i = lg(k+1) + 1

No. You have to take the log of each side of an equation, not just parts of it.

If you want me to answer any more questions, please answer the ones I have asked.
 

Similar threads

  • · Replies 11 ·
Replies
11
Views
2K
  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
1K
  • · Replies 7 ·
Replies
7
Views
3K
  • · Replies 8 ·
Replies
8
Views
3K
Replies
3
Views
3K
Replies
3
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K