Questions tagged [bisection]

Anything related to a class of algorithms where the result is found by searching either the upper or the lower half of a sorted set of items and repeating this procedure recursively. Commonly used to refer to the bisection method (to find a root of an equation) or to the bisection search algorithm (to search a sorted list for a matching element).

Anything related to a class of algorithms where the result is found by searching either the upper or the lower half of a sorted set of items and repeating this procedure recursively, narrowing the search at each step.

Two common examples of bisection algorithms are:

257 questions
-5
votes
2 answers

write code to find square-root using bisection method in c++?

Bisection is as far as i know narrowing your search and reach the specific value in interval. please give me a sample of that how to make a generic code to find square-root. the way i think is taking three variables low, mid, high. high = userinput,…
Jhon Smith
  • 21
  • 1
  • 1
  • 2
-6
votes
1 answer

Bisection Method - C#

I have a function called Bisection method that Accepts 4 parameters , delegate of a function , start and end of interval and user guess of the solution. Here is the function: public static double Bisection_method (MyFun fun , double start ,…
Ahmad Adel
  • 136
  • 2
  • 11
1 2 3
17
18