Thursday, June 9, 2016

algebra precalculus - Understanding some proofs-without-words for sums of consecutive numbers, consecutive squares, consecutive odd numbers, and consecutive cubes



enter image description here




enter image description here



enter image description here



I understand how to derive the formulas for sum of squares, consecutive squares, consecutive cubes, and sum of consecutive odd numbers but I don't understand the visual proofs for them.



For the second and third images, I am completely lost.



For the first one I can see that there are $(n+1)$ columns and $n$ rows. I'm assuming that the grey are even and that the white are odd or vice versa? So in order to have an even amount of odds and evens you must divide by two?




How can I create an image for the sum of consecutive odd numbers ($1+3+5+...(2n-1)^2 = n^2$)


Answer



The second picture gives a visual proof for the formula
$$3(1^2+2^2+3^2+\dots +n^2)=\frac{n(n+1)}{2}\cdot (2n+1)$$
for $n=5$. The sum of the areas of the $3\cdot 5$ squares on the right
$$3(1^2+2^2+3^2+4^2+5^2)$$
is equal to the area of the rectangle on the left with height $1+2+3+4+5=\frac{6\cdot 5}{2}$ (see the first formula) and base $2\cdot 5+1$.



The third picture gives a visual proof for the formula
$$4(1^3+2^3+3^3+\dots +n^3)=(n(n+1))^2$$

for $n=6$. Starting from the center and evaluating the areas of each concentric frame, the area of the large square of side $7\cdot 6$ is
$$4\cdot 1^2+8\cdot 2^2+12\cdot 3^2+16\cdot 4^2+20\cdot 5^2+24\cdot 6^2\\
=4(1^3+2^3+3^3+4^3+5^3+6^3)$$


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection $f \colon A \rightarrow B$ and I want to get bijection. Can I just resting codomain to $f(A)$? I know that every function i...