Created
September 7, 2015 16:42
-
-
Save markomanninen/dd3642a5fe9851e50c1e to your computer and use it in GitHub Desktop.
Geometrical representation of square of pi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Geometrical representation of square of pi? | |
a) Let's say I have a circle with a diameter $1$. Then a perimeter is $π$ (pi) and ratio between a perimeter and a diameter is $π$. | |
[![PI][1]][2] | |
b) I want to use π as a diameter of another circle, which gives a perimeter of $π*π = π^2$ and a ratio $\frac{π^2}{π} = π$. | |
[![PI squared][2]][1] | |
My question is if there are ways to illustrate a progression from a) to b) by continuous geometrical construction. Or, how would you illustrate $π$ squared by geometry? | |
***** | |
#### Added background information | |
I was thinking if this could be done because fractions can be presented by infinite geometric series, which is true for pi as well (Euler?): | |
a) | |
$$\pi =\sqrt{ 6\sum_{i=1}^\infty \frac{1}{i^2}}$$ | |
b) | |
$$\pi^2 = 6\sum_{i=1}^\infty \frac{1}{i^2}$$ | |
respectively to pictures above. | |
So why this geometric serial representation: | |
[![Quadrupling][3]][3] | |
where (perimeter / diagonal ratio = 4): | |
c) perimeter (D,E,F,G) = 4 AND diagonal (B1,C1) | |
d) perimeter (V,W,Z,A1) = four squared = 4^2 = 16 AND diagonal (D1,E1) = 4 | |
is fundamentally different from a) and b) which can be expressed as geometric series? | |
Other background for question is my wondering what does it really mean in real world physics when you use pi squared on equations like centripetal acceleration formula: | |
$$\frac{T2}{R3} = \frac{4\pi^2}{GM_{central}}$$ | |
but it is really a side matter in this case. | |
[1]: http://i.stack.imgur.com/q8UCG.png | |
[2]: http://i.stack.imgur.com/OXftL.png | |
[3]: http://i.stack.imgur.com/kqC79.png | |
> Written with [StackEdit](https://stackedit.io/). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment