Pages
Tags
algorithms approximation arithmetic Babylonian binary binomial coefficients book review bracelets carnival Carnival of Mathematics chess chess board combinatorics cookies counting decadic decimal derivatives divisors education expansion fibonacci fractal game games Haskell hyperbinary idempotent integers interactive irrational Ivan Niven number numbers pi prime proof puzzle rectangles repunit review sequence squares triangular videoBlogroll
Fun
Reference
Categories
- algebra (13)
- arithmetic (28)
- books (17)
- calculus (6)
- challenges (41)
- combinatorics (2)
- complex numbers (3)
- computation (22)
- convergence (9)
- counting (25)
- famous numbers (37)
- fibonacci (11)
- fractals (11)
- games (14)
- geometry (20)
- golden ratio (7)
- group theory (1)
- humor (6)
- induction (7)
- infinity (17)
- iteration (14)
- links (57)
- logic (6)
- meta (32)
- modular arithmetic (7)
- number theory (42)
- open problems (9)
- paradox (1)
- pascal's triangle (7)
- pattern (45)
- people (19)
- pictures (14)
- posts without words (3)
- primes (15)
- probability (3)
- programming (6)
- proof (39)
- puzzles (10)
- recursion (6)
- review (9)
- sequences (25)
- solutions (23)
- teaching (6)
- trig (3)
- Uncategorized (1)
- video (14)
Archives
- May 2012 (2)
- April 2012 (3)
- March 2012 (1)
- February 2012 (4)
- January 2012 (5)
- December 2011 (1)
- November 2011 (7)
- October 2011 (4)
- September 2011 (6)
- July 2011 (2)
- June 2011 (4)
- May 2011 (5)
- April 2011 (2)
- March 2011 (4)
- February 2011 (1)
- January 2011 (1)
- December 2010 (1)
- November 2010 (4)
- October 2010 (2)
- September 2010 (1)
- August 2010 (1)
- July 2010 (1)
- June 2010 (2)
- May 2010 (3)
- April 2010 (1)
- February 2010 (6)
- January 2010 (3)
- December 2009 (8)
- November 2009 (7)
- October 2009 (3)
- September 2009 (3)
- August 2009 (1)
- June 2009 (4)
- May 2009 (5)
- April 2009 (4)
- March 2009 (2)
- February 2009 (1)
- January 2009 (7)
- December 2008 (1)
- October 2008 (2)
- September 2008 (7)
- August 2008 (1)
- July 2008 (1)
- June 2008 (1)
- April 2008 (5)
- February 2008 (4)
- January 2008 (4)
- December 2007 (3)
- November 2007 (12)
- October 2007 (2)
- September 2007 (4)
- August 2007 (3)
- July 2007 (1)
- June 2007 (3)
- May 2007 (1)
- April 2007 (4)
- March 2007 (3)
- February 2007 (7)
- January 2007 (1)
- December 2006 (2)
- October 2006 (2)
- September 2006 (6)
- July 2006 (4)
- June 2006 (2)
- May 2006 (6)
- April 2006 (3)
- March 2006 (6)
Meta

This is somehow related to binary…and yet it’s also related to the Fibonacci Sequence. I’ll have to think about it.
Well, there goes my afternoon.
In keeping with the idea of responding without words:
http://yozh.org/old/images/fib001.png
http://yozh.org/old/images/fib002.png
Neat! Looking at the second image I noticed things I hadn’t thought of when I made mine. =)
It’s almost a cellular automaton with a shift: add a column of green down the right hand side and you get a trace of Wolfram’s Rule # 106/120/169/225 (depending on which color you interpret to be 0 or 1, and on the order in which the cells are traced) with the output shifted one cell to the side at each step.
Very interesting observation! You say it’s very close to a trace of those rules but not exactly. Which makes me wonder whether some sort of cellular automaton can be devised which would give exactly this as its trace — or more likely, would include this as a subtrace, possibly with some extra intermediate states in between.
Edit to the comment I just made: add that column down the right hand side and you get something /very close to/ a trace of one of those rules I mentioned.
I think I have figured out the pattern and I can make pictures like xander has made. But I do not understand the math behind the pattern. Help? Also, why is is tagged “partition”?
If I recall correctly from undergraduate analysis, a partition of a set A is a collection of subsets such that the union of all of the subsets is A, and the intersection of any two subsets is empty. That is, the subsets completely cover the original set, but they do not overlap anywhere.
In the original image, imagine that you are laying stones for a garden path. You have blue stones, which are 1 foot square; and green stones, which are 1 foot by 2 feet. The path is 7 feet long. One question that you might ask is “How many ways can I lay stones to build my path?”
Each possible arrangement of stones represents one partition of the path—the stones completely cover the path, but do not overlap. What I find interesting is that the number of possible partitions of the type pictured is a Fibonacci number (specifically, the nth Fibonacci number, where n is the length of the garden path).
This can be thought of inductively (or recursively). Let us suppose that there are F_n ways to lay a path that is n feet long. First, note that there is only one way to pave a 1 foot long path, and that there are two ways to pave a 2 foot long path. Thus
F_1 = 1
F_2 = 2.
How many ways are there to lay stones for a path that is k feet long? That is, what is F_k? You can either lay a path that is k-1 feet long, and put a 1 foot stone at the end; or you can lay a path that is k-2 feet long, and put a 2 foot stone at the end. This gives us the relation
F_k = F_{k-1} + F_{k+2}
which is the Fibonacci sequence.
As an added bonus, it seems that if you add a third type of stone that is 1 foot by 3 feet, you get a sequence defined by
S_1 = 1
S_2 = 1
S_3 = 2
S_n = S_{n-1} + S_{n-2} + S_{n-3}
where S_n is the number of possible partitions for a path of length n.
xander
The solution was good. The explanation was great. Thanks.
Instant recognition. I use this problem with students (from middle school through teacher training)
Ghost the Bunny hops up a flight of 7 steps. Ghost can hop up one or two steps at a time, and never hops down. In how many ways can Ghost reach the top step? (3 double hops then a single is not the same as two doubles, a single, and another double)
Yeah, I also instantly thought of the same bijection. I call it the “stair-step”problem.
Pingback: Math Teachers at Play # 39 « Let's Play Math!