How can I "draw" $n$ parallel lines in such a way that they will divide a circle (disc) in $n+1$ equal areas ?
How to equally divide a circle with parallel lines?
-
0What is the problem with doing it? Do you know about Cartesian coordinates $Oxy$ and trigonometric functions? – 2011-10-28
5 Answers
Even the case $n=2$ is hard, according to this link.
The area of the segment is $\frac{r^2}2 (\varphi - \sin \varphi)$ where $\varphi$ is the angle under which one views the chord of the segment from the center.
The distance from the center is $r \cos \frac{\varphi} 2$.
So, you have to solve the equations $\frac{1}2 (\varphi - \sin \varphi)=\frac {\pi k} {n+1}$ and then plug the values of $\varphi$ into the above equation.
-
0actually $A=r^2(\frac{\pi \varphi}{360}-\frac{\sin \varphi}{2})$ – 2011-10-28
-
4@pedja: It is common usage to mean radians when one just writes $\varphi$ for an angle. – 2011-10-28
-
1also I think that you should write $\varphi_k$ instead of $\varphi$ in final formulae – 2011-10-28
-
2@pedja: You're just making yourself look silly here. – 2011-10-28
-
2@TonyK,thanks...great comment from "great" man :) – 2011-10-28
Building on Phira's answer: you have to solve the equation $$\varphi - \sin\varphi = \frac{2\pi k}{n+1}$$ This has to be solved numerically. You can use Newton's method for this. Let $a = \frac{2\pi k}{n+1}$. Then you want to solve $f(x) = 0$, where $f(x) = x - \sin x - a$. So choose an initial approximation $x_0$ (for instance, $x_0 = a$), and then iterate the equation $$x_{n+1} = x_n - \frac{f(x_n)}{f'(x_n)} = x_n - \frac{x_n - \sin x_n - a}{1 - \cos x_n}$$ as many times as you need to get the desired accuracy.
-
0Looks awfully like the Kepler equation, that one. A few methods for numerically solving it were discussed [here](http://math.stackexchange.com/questions/21864). – 2011-10-28
-
1sorry if this is a silly question..but what is $k$ standing for ? – 2011-10-28
Take a circle of radius $r$ centered at $(2r;0)$ with its equation being $(x-r)^2+y²=r^2$.
Try to find the cartesian function of the top half circle: $y=\sqrt{r^2-(x-r)^2}$ or $y=\sqrt{-x^2 + 2 \cdot x \cdot r}$
Finding the n-th of a circle or of a half-circle is basically the same.
The area of the half-circle is $1/2 \cdot \pi \cdot r^2$. You want to know where to cut it to get areas of $\frac{1/2 \cdot \pi \cdot r^2}{n}$
That's quite simple calculus:
$$\int_{0}^{v_i} \sqrt{-x^2 + 2 \cdot x \cdot r} \mathrm{d} x = 1/2 \cdot \pi \cdot r^2 \cdot \frac{i}{n} \text{with } 0 < i \leq n $$
find $v_i$, the vertical cuts.
-
1Umm...yes, OK (maybe) -- but how do you find $v_i$? You did say it was "quite simple". – 2011-10-28
-
0@TonyK intergate, keeping $v_i$ as a variable and then find $v_i$… – 2011-10-31
-
0Go on then. ${}$ – 2011-10-31
-
0After integrating: $r^2 \cdot \arctan(\frac{\sqrt{v_i}}{\sqrt{2 \cdot r - v_i}}) - \frac{\sqrt{v_i} \cdot (r - v_i) \cdot \sqrt{2 \cdot r - v_i}}{2} = 1/2 \cdot \pi \cdot r^2 \cdot \frac{i}{n}$. (Of course, it may be easier to read with proper values for $r$, $i$ and $n$). Then, isolating $v_i$ is algebra I won't do it here. – 2011-10-31
-
0It's not algebra. The equation has to be solved numerically. But I'm glad to see you deleted "quite simple"! – 2011-11-02
For any circle surely the distance between the lines drawn is a constant fraction of the diameter of the circle, depending on the divisions required. Is this too simple?
-
1Why would it be a constant fraction? If you have evenly spaced lines then the area of the circle sectors are pretty clearly not equal – 2016-04-27