Optimizing Number Isolation: Equal vs. Unequal Bisection Strategies

  • Thread starter Thread starter Loren Booda
  • Start date Start date
  • Tags Tags
    Isolation
Loren Booda
Messages
3,108
Reaction score
4
Given a large but finite number line including an arbitrarily chosen number, what strategy of (un)equal bisections will isolate that number within a minimum of steps? For instance, should one choose equal bisecting, or would a series of unequal 2:1 bisecting be more efficient? Might e or phi be involved?
 
Physics news on Phys.org
What do you mean by isolate?
 
Binary search is the fastest if you split into halves don't care about the results.

There's a puzzle (with, I'm told, applications in networking) where you've got two (or some number of eggs) and 100 (or some number) of floors, and you want to find out what the highest you can drop the egg from without breaking it as quickly as possible. Since only a small number of negative results is acceptable more exotic search strategies are preferred.
 
Dragonfall,

By isolate I mean eventually creating a section within which only a given number resides.
 
Loren Booda said:
By isolate I mean eventually creating a section within which only a given number resides.

If you have a probability distribution, then you'll want to bisect the probability, and not the range.

For example, if the probability that the number is n is \frac{1}{2^n}, then you'd be splitting between 1 and 2, then 2 and 3, then 3 and 4, and so on.
 
I believe you're quite right, Nate.
 
##\textbf{Exercise 10}:## I came across the following solution online: Questions: 1. When the author states in "that ring (not sure if he is referring to ##R## or ##R/\mathfrak{p}##, but I am guessing the later) ##x_n x_{n+1}=0## for all odd $n$ and ##x_{n+1}## is invertible, so that ##x_n=0##" 2. How does ##x_nx_{n+1}=0## implies that ##x_{n+1}## is invertible and ##x_n=0##. I mean if the quotient ring ##R/\mathfrak{p}## is an integral domain, and ##x_{n+1}## is invertible then...
The following are taken from the two sources, 1) from this online page and the book An Introduction to Module Theory by: Ibrahim Assem, Flavio U. Coelho. In the Abelian Categories chapter in the module theory text on page 157, right after presenting IV.2.21 Definition, the authors states "Image and coimage may or may not exist, but if they do, then they are unique up to isomorphism (because so are kernels and cokernels). Also in the reference url page above, the authors present two...
When decomposing a representation ##\rho## of a finite group ##G## into irreducible representations, we can find the number of times the representation contains a particular irrep ##\rho_0## through the character inner product $$ \langle \chi, \chi_0\rangle = \frac{1}{|G|} \sum_{g\in G} \chi(g) \chi_0(g)^*$$ where ##\chi## and ##\chi_0## are the characters of ##\rho## and ##\rho_0##, respectively. Since all group elements in the same conjugacy class have the same characters, this may be...
Back
Top