Can you find the center of a circle using only a compass?

In summary, the conversation discusses the possibility of identifying the center of a given circle with only a compass. One method involves drawing a series of circles and finding the intersection of the last two, while another involves folding the paper to make a visible line. It is mentioned that there may be a theorem stating that any construction that can be done with a compass and straight edge can also be done with just a compass, but this is not confirmed.
  • #1
pixel01
688
1
Hi everybody,

I ve got a question : is it possible to identify the center of a given cirle with only a compass?

Thanks for reading
 
Mathematics news on Phys.org
  • #2
pixel01 said:
I ve got a question : is it possible to identify the center of a given cirle with only a compass?
No you need a ruler as well.

Pick a point A on the circle. Draw a circle with center A and diameter less than that of the given circle. Mark off the two points B and C where this new circle intersects the given one. Join B and C with the line BC.

Bisect BC. The midpoint is D. Draw a straight line through A and D and extend it until it meets the given circle again at E. AE is a diameter.

Repeat this process for a second point on the given circle. Where the two diameters meet is the center.
 
  • #3
Thank you for answering.
But the problem is without a ruler ! It seems impossible. I have tried many times but failed.
 
  • #4
It works without a ruler, though only for a circle that's on a sheet of paper.
Instead of using a ruler fold the paper to make a line visible.
 
  • #5
Edgardo said:
It works without a ruler, though only for a circle that's on a sheet of paper.
Instead of using a ruler fold the paper to make a line visible.

Well, it seems like a trick ! Let's say the circle is on a table. May be we need to prove it impossible to do so.
 
  • #6
http://steiner.math.nthu.edu.tw/disk3/gc-03/13/center.html
 
Last edited by a moderator:
  • #7
It's great !. Thank you Jeroen.
Anyway, how can we prove that friends?
 
  • #8
The method works by drawing a circle, picking two points on it, then draw a series of circles based on where the existing circles.
The final answer is the intersection of the last two circles.

All you need to do is write a big formula containing all these circles and resulting in the coordinates of the final intersection and then prove that "the_big_function(center_of_circle, radius_of_circle, point_1_on_circle, point_2_on_circle) = center_of_circle" is true for any input.


This would be a start:
Code:
point
  float x 
  float y 

circle
  point center 
  float radius 

point intersect (circle ca, circle cb, point pn)
  returns intersection between ca and cb that is not pn

float distance (point pa, point pb)
  returns distance between points pa and pb

point pointoncircle (circle c, float angle)
  returns a point on the circle going the given angle clockwise from the top

input:
  circle c0
    c0.center = variable
    c0.radius = variable
  float a1 
    a1 = variable
  float a2
    a2 = variable

output:
  point pf

process:
  point p1
    p1 = pointoncircle(c0,a1)
  point p2
    p2 = pointoncircle(c0,a2)
  circle c1
    c1.center = p1
    c1.radius = distance(p1,p2)
  circle c2
    c2.center = p2
    c2.radius = distance(p1,p2)
  circle c3
    c3.center = intersect(c0,c1,p2)
    c3.radius = distance(p1,p3)
  circle c4
    c4.center = intersect(c2,c3,p1)
    c4.radius = distance(intersect(c2,c3,p1),p1)
  circle c5
    c5.center = intersect(c4,c3,p1)
    c5.radius = distance(intersect(c4,c3,p1),p1)
  circle c6
    c6.center = intersect(c2,c4,p1)
    c6.radius = distance(intersect(c2,c4,,p1),p1)
  pf = intersect(c5,c6,p1)
 
Last edited:
  • #9
I may be wrong but I seem to remember a theorem that any construction that could be done with compasses and straight edge could be done with compasses alone. Of course "drawing a line" has to be interpreted as constructing two points on the line.

Check:
http://thesaurus.maths.org/mmkb/entry.html?action=entryById&id=4066
 
Last edited by a moderator:

1. What is the center of a circle?

The center of a circle is a point located at an equal distance from all points on the circumference of the circle. It is often denoted by the letter "O".

2. How do you find the center of a circle?

The center of a circle can be found by drawing two perpendicular lines from any two points on the circumference of the circle. The point where these lines intersect is the center of the circle.

3. Can the center of a circle be outside of the circle?

No, the center of a circle must always be located within the circle itself. If the center is outside of the circle, it is not a circle but a different type of shape known as an ellipse.

4. What are the properties of the center of a circle?

The center of a circle is equidistant from all points on the circumference, meaning it is the same distance from any point on the circle. It is also the point of symmetry for the circle, meaning any line passing through the center will divide the circle into two equal halves.

5. Is the center of a circle always in the middle?

Yes, the center of a circle is always located at the exact middle of the circle. This is because the radius, which is the distance from the center to any point on the circumference, is always the same length. Therefore, the center must be in the middle for the circle to have equal distance from all points on the circumference.

Similar threads

Replies
6
Views
1K
  • General Math
Replies
3
Views
858
Replies
4
Views
786
Replies
2
Views
1K
Replies
1
Views
2K
Replies
2
Views
1K
Replies
1
Views
1K
Replies
23
Views
3K
  • General Math
Replies
6
Views
2K
  • General Math
Replies
6
Views
1K
Back
Top