A human pyramid is built up by several layers. At the top, there is one person, and each subsequent layer has 1 additional person. Each person is supported by the 2 people that are beneath them.
Consider a 9 layer pyramid, which comprises 45 people. Assuming that all the cheerleaders weigh 128 pounds each, and that the weight is equally distributed amongst both supporters, what is the most weight supported by anyone in this pyramid?
How would you generalize this?
Image credit: Wikipedia Pere Lopez
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
I'll write my general solution first. Suppose there are as many rows as desired, and let n , k be any nonnegative integers with 0 ≤ k ≤ n . We consider the person in row n , position k (start with 0, like in Pascal's Triangle). Let w n , k represent the weight of the person in that position. Let f ( n , k ) represent the weight supported by the person in that position.
Consider any two people P and Q , say in positions ( a , b ) and ( n , k ) respectively, such that Q is supporting (part of) the weight of P in the pyramid. Let g ( a , b , n , k ) represent the proportion of the weight of the person in position ( a , b ) that is supported by the person in position ( n , k ) . The weight of P is evenly distributed among the two people in positions ( a + 1 , b ) and ( a + 1 , b + 1 ) . Therefore (for example) g ( a , b , a + 1 , b ) = g ( a , b , a + 1 , b + 1 ) = 2 1 w a , b . Similarly, it can be shown by induction that g ( a , b , n , k ) = 2 n − a 1 ( k − b n − a ) w a , b (the only exception: if a = n and b = k then g ( n , k , n , k ) = 0 since a person is assumed to not be supporting their own weight).
Now, let's find which of those values are nonzero for fixed ( n , k ) . We must have a ≤ n and 0 ≤ k − b ≤ n − a . Hence 0 ≤ b ≤ k and b ≤ a ≤ n − k + b . Therefore, the total weight supported by person Q is: f ( n , k ) = − w n , k + b = 0 ∑ k a = b ∑ n − k + b 2 n − a 1 ( k − b n − a ) w a , b
Note that we subtract w n , k because a person does not support their own weight.
If we assume that every person's weight is the same (say w ), then we can simplify this formula a little by letting s = k − b and t = ( n − a ) − ( k − b ) :
f ( n , k ) = w ( − 1 + s = 0 ∑ k t = 0 ∑ n − k 2 s + t 1 ( s s + t ) )
For this particular problem, we plug in n = 8 , k = 4 and w a , b = 1 2 8 for 0 ≤ b ≤ a , and sure enough the answer is 8 3 7 .
Unfortunately I don't have a general solution, but for a pyramid of height 9, here we are: Notice first that the entire weight of the 36 people on upper rows will be distributed among people of the bottom row, with the heaviest load on the person in the centre. We now focus on this person: For a given person in the pyramid, we label them to be on row k , starting from the bottom row k = 0 , and lateral position m , starting the count at m = 0 for the leftmost person from whom there is a diagonal line connecting them to the centre person of the bottom row (so for example, the two central people in row k = 1 will have positions 0 and 1, and everyone else in row k = 1 has position m < 0 or m > 1 ). Then the person at k , m contributes a weight of ( m k ) × 1 2 8 × 2 − k (we can see this by counting the number of ways this person has some chain of supporters leading down to the central person). Here we exclude k = m = 0 , who contributes no weight to themselves. Then the total weight on the central person is the sum of each contribution from positions m = 0 to m = k in rows k = 1 to k = 4 , plus the contribution from positions m = k − 4 to m = 4 in rows k = 5 to k = 8 . The former sum is just 128 times four rows; the latter sum can be done by hand, though there's probably a cleverer way of doing it. The total weight on the central person is then 1 2 8 × 4 + 3 2 5 = 8 3 7 . (At this point, you should call some medical help for them.)
Answer is 965 according to the question
Log in to reply
Here's where this becomes more like legalese than math. What does it mean by "most weight supported by anyone"? Does that include any of the cheerleaders' own weight? If I am holding up a ballerina that weighs 128 pounds, I do not think it's said that I am "supporting 308 pounds" because that includes my own weight. It's said that I'm supporting 128 pounds. It's a fine point, and I support (yes, support) the answer being 837 pounds, although perhaps the wording could have been more precise.
It's unfortunate that a lot of math is marred by squabbles over wording, it makes me wonder if we need to extend Godel's Incompleteness Theorem.
Why is it 965?
Am I the only person to brute force this? I did omit the side people and worked my way down centre. However, it still took me 3 tries.
I did the same, but I got the correct answer on the first try
Log in to reply
Nice. I messed up with the row (row 8). It was a stupid mistake.
There are some pretty good solutions here but one more doesn't hurt, right? The weight supported by the arms and knees of each person is half of the weight on each person being supported by them plus its own weight, so the n − t h person at layer m (from top to bottom) supports a weight of:
w m , n = 0 . 5 ⋅ ( w m − 1 , n − 1 + w m − 1 , n ) + 1 2 8 w 0 , 0 = 1 2 8
from that, it's easy to iterate over this to get that the weights on the arms and knees of each person in the last row are:
[ 2 5 5 . 5 , 5 0 6 . 0 , 7 3 4 . 0 , 9 0 2 . 0 , 9 6 5 . 0 , 9 0 2 . 0 , 7 3 4 . 0 , 5 0 6 . 0 , 2 5 5 . 5 ]
But since we want to know the weight that the person is supporting, not counting themselves, we can subtract their own weight which gives us 9 6 5 − 1 2 8 = 8 3 7 .
To iterate over this I got lazy and simply wrote this python program:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|
Problem Loading...
Note Loading...
Set Loading...
Note that the person who supported the most weight is the person in the middle of the ninth row. Give him a name, S , for Strongest or Superman, whatever you like.
In the eighth row, there are 2 people whom weight is supported by S . They provide a weight of 6 4 , and there are 2 ways for the weight to reach S . Total weight, 6 4 × 2 = 1 2 8 .
In the seventh row, there are 3 people whom weight is supported by S . They provide a weight of 3 2 , and there are 4 ways for the weight to reach S . Total weight, 3 2 × 4 = 1 2 8 .
In the sixth row, there are 4 people whom weight is supported by S . They provide a weight of 1 6 , and there are 8 ways for the weight to reach S . Total weight, 1 6 × 8 = 1 2 8 .
Using the same logic, you will get an equation like this:
6 4 × 2 + 2 1 × 4 + 1 6 × 8 + 8 × 1 6 + 4 × 3 0 + 2 × 5 0 + 1 × 7 0 + 2 1 × 7 0
The tricky part is counting the ways for the weight to reach S . Actually it's pretty simple, just add up the weight from the two people below them.