14

How can I "draw" $n$ parallel lines in such a way that they will divide a circle (disc) in $n+1$ equal areas ?

SBF
  • 36,041
dugres
  • 251
  • What is the problem with doing it? Do you know about Cartesian coordinates $Oxy$ and trigonometric functions? – SBF Oct 28 '11 at 09:02

5 Answers5

6

Even the case $n=2$ is hard, according to this link.

Gerry Myerson
  • 179,216
2

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.

TonyK
  • 64,559
1

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.

Phira
  • 20,860
1

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.

  • 1
    Umm...yes, OK (maybe) -- but how do you find $v_i$? You did say it was "quite simple". – TonyK Oct 28 '11 at 16:23
  • @TonyK intergate, keeping $v_i$ as a variable and then find $v_i$… – SteeveDroz Oct 31 '11 at 07:31
  • Go on then. ${}$ – TonyK Oct 31 '11 at 09:38
  • After 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. – SteeveDroz Oct 31 '11 at 11:37
  • It's not algebra. The equation has to be solved numerically. But I'm glad to see you deleted "quite simple"! – TonyK Nov 02 '11 at 13:06
  • Hi @SteeveDroz, I refer to your solution to this problem awhile back. Instead of taking the integral from 0 to v(i), shouldn't the integral be taken from r to v(i) because your circle is of radius r centered at (2r, 0)? – Leockl Feb 29 '20 at 07:16
-1

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?

C W
  • 1
  • 1
    Why would it be a constant fraction? If you have evenly spaced lines then the area of the circle sectors are pretty clearly not equal – MT_ Apr 27 '16 at 06:24