I'm currently working on problem 6a of this problem set from MIT Open Course Ware. It's a spin on the book stacking problem. In this scenario, any additional books you stack beyond the first one has half of the weight of the previous book, and you also have a duplicate of the lightest book on the stack.
The solution in the problem set says that each additional book you stack in this case will give you exactly 1/4th of a book length for each additional book you add.
My problem with this conclusion is that the solution assumes "Thus, you can model this problem as stacking two books of equal weight". Isn't this untrue since a stack of books has an uneven weight distribution whereas a single book would have a uniform weight distribution? With a large book stack (> 3), the stack will get lighter the farther you move away from it's center of gravity, which would need to be compensated for when finding the new center of gravity.
Can someone explain how the solution came up with the fraction 1/4 as the constant growth length?