Ask your own question, for FREE!
MIT 6.00 Intro Computer Science (OCW) 9 Online
OpenStudy (anonymous):

Can someone explain to me 'bisection search' ?

OpenStudy (osanseviero):

Ok, let's think we have to find a value in the range 1 to 1 million

OpenStudy (osanseviero):

I am going to try that you answer yourself

OpenStudy (osanseviero):

So...how would you try to find this value?

OpenStudy (osanseviero):

toc toc?

OpenStudy (anonymous):

i know its where you guess half way and then see if the answer is lower or higher. I'm just now super clear on how to set it up in python

OpenStudy (anonymous):

not*

OpenStudy (osanseviero):

You should write a psudo code first x is the value you are searching a is the max range b is the min range c is (a+b)/2 -> midpoint if x>c: the min range will be c now. else: the max range will be c now Something like that :) try working around it

OpenStudy (anonymous):

Don't forget an epsilon value, or you may end up in an infinite loop.

OpenStudy (unklerhaukus):

sounds like binary search

OpenStudy (anonymous):

Are you referring specifically to Newton's method? Because that actually has a rather complicated proof to explain why it converges on the square root. For just how to implement it in Python, review the code from Prof. Guttag's examples: http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-00sc-introduction-to-computer-science-and-programming-spring-2011/unit-1/lecture-3-problem-solving/MIT6_00SCS11_lec03.pdf

OpenStudy (lopus):

this video can help you: https://www.youtube.com/watch?v=nJ74bEB-UEw

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!