Processing math: 100%
Skip to main content

Posts

Showing posts from October, 2014

A Strange Recursive Relation, Automatic

Hofstadter mentions the following recursive relation in his great book "Gödel, Escher, Bach": g(0)=0;g(n)=ng(g(n1)). I claim that g(n)=ϕ(n+1), where ϕ=1+52, and I'll show this using a technique that makes proving many identities of this type nearly automatic. Let ϕn=ϕn+e, where 0<e<1 as ϕ is irrational, nor can e=1ϕ, and note that ϕ satisfies ϕ2+ϕ1=0. Some algebra gives \[ \begin{align} n-\left\lfloor \left( \left\lfloor \phi\cdot n \right\rfloor + 1 \right) \cdot \phi \right\rfloor &= n-\left\lfloor \left( n\cdot \phi - e + 1 \right) \cdot \phi \right\rfloor \\ &= n-\left\lfloor n\cdot {\phi}^2 - e\cdot \phi + \phi \right\rfloor \\ &= n-\left\lfloor n\cdot \left(1-\phi\right) - e\cdot \phi + \phi \right\rfloor \\ ...

Closed Under Means

Here's a nice little problem from the 13th All Soviet Union Mathematics Olympiad. Given a set of real numbers S containing 0 and 1 that's closed under finite means, show that it contains all rational numbers in the interval [0,1]. This isn't a difficult problem, but there's a particularly nice solution. First observe that if xS then both x4 and 3x4 are in S; average {0,x} to get x2, average {0,x2} to get x4, average {x2,x} to get 3x4. We could show any rational number mn with 1m<n is in S if we had n distinct elements from S that summed to m. Let's exhibit one. Start with an array with m 1s on the left, nm 0s on the right. Repeatedly replace adjacent x,y values with 3(x+y)4,(x+y)4, where either x=1,y1 or x0,y=0, until there is one...