Central Angle Visualization >}
  description="Central angle formed by two radii OA and OB with vertex at the center of circle O."
  data={[
    {
      points: [
        { x: 0, y: 0, z: 0 },
        { x: 3 * Math.cos(Math.PI / 6), y: 3 * Math.sin(Math.PI / 6), z: 0 },
      ],
      color: getColor("ORANGE"),
      labels: [{ text: "OA", at: 0.5, offset: [0.3, 0.3, 0] }],
      showPoints: true,
    },
    {
      points: [
        { x: 0, y: 0, z: 0 },
        { x: 3 * Math.cos(5 * Math.PI / 6), y: 3 * Math.sin(5 * Math.PI / 6), z: 0 },
      ],
      color: getColor("ORANGE"),
      labels: [{ text: "OB", at: 0.5, offset: [-0.3, 0.3, 0] }],
      showPoints: true,
    },
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const angle = (Math.PI / 6) + (i * (2 * Math.PI / 3) / 20);
        return {
          x: 1.5 * Math.cos(angle),
          y: 1.5 * Math.sin(angle),
          z: 0,
        };
      }),
      color: getColor("PURPLE"),
      lineWidth: 2,
      showPoints: false,
      labels: [{ text: "θ = 120°", at: 10, offset: [0.5, 0.5, 0] }],
    },
    {
      points: Array.from({ length: 61 }, (_, i) => {
        const angle = (Math.PI / 6) + (i * (2 * Math.PI / 3) / 60);
        return {
          x: 3 * Math.cos(angle),
          y: 3 * Math.sin(angle),
          z: 0,
        };
      }),
      color: getColor("VIOLET"),
      lineWidth: 3,
      showPoints: false,
      labels: [{ text: "Arc AB", at: 30, offset: [0.5, 0.5, 0] }],
    },
    {
      points: Array.from({ length: 101 }, (_, i) => {
        const angle = i * (2 * Math.PI / 100);
        return {
          x: 3 * Math.cos(angle),
          y: 3 * Math.sin(angle),
          z: 0,
        };
      }),
      color: getColor("CYAN"),
      lineWidth: 1,
      showPoints: false,
      smooth: true,
    },
  ]}
  cameraPosition={[0, 0, 10]}
  showZAxis={false}
/>
## Relationship Between Central Angle and Arc
The fundamental relationship between a central angle and the arc it faces is very simple yet important. The measure of a central angle in degrees equals the measure of the arc it faces in degrees. This is like a direct relationship between a bottle opener and the bottle cap being opened.
If the central angle , then arc AB also measures . This concept applies because an arc is defined based on the central angle that faces it.
## Types of Arcs Based on Central Angle
Based on the measure of their central angles, arcs can be classified into three types:
### Minor Arc
A minor arc is an arc faced by a central angle less than . This is an arc shorter than half a circle. Like a piece of cake smaller than half the whole cake.
### Semicircle Arc
A semicircle arc is faced by a central angle of exactly . This central angle is formed by the diameter of the circle, so the arc is half the circumference of the circle.
### Major Arc
A major arc is an arc faced by a central angle greater than . This is an arc longer than half a circle. To calculate the measure of a major arc, we use:
 {
        const angle = i * (Math.PI / 3) / 20;
        return {
          x: 2 * Math.cos(angle),
          y: 2 * Math.sin(angle),
          z: 0,
        };
      }),
      color: getColor("PURPLE"),
      lineWidth: 2,
      showPoints: false,
      labels: [{ text: "θ = 60°", at: 10, offset: [1, 0.3, 0] }],
    },
    {
      points: Array.from({ length: 31 }, (_, i) => {
        const angle = i * (Math.PI / 3) / 30;
        return {
          x: 4 * Math.cos(angle),
          y: 4 * Math.sin(angle),
          z: 0,
        };
      }),
      color: getColor("LIME"),
      lineWidth: 4,
      showPoints: false,
      labels: [{ text: "Minor Arc (60°)", at: 15, offset: [1, 0.5, 0] }],
    },
    {
      points: [
        { x: 0, y: 0, z: 0 },
        { x: 4 * Math.cos(Math.PI / 3), y: 4 * Math.sin(Math.PI / 3), z: 0 },
      ],
      color: getColor("ORANGE"),
      lineWidth: 2,
      showPoints: false,
    },
    {
      points: [
        { x: 0, y: 0, z: 0 },
        { x: 4, y: 0, z: 0 },
      ],
      color: getColor("ORANGE"),
      lineWidth: 2,
      showPoints: false,
    },
    {
      points: [
        { x: 0, y: 0, z: 0 },
        { x: -4, y: 0, z: 0 },
      ],
      color: getColor("ORANGE"),
      lineWidth: 2,
      showPoints: false,
    },
    {
      points: Array.from({ length: 21 }, (_, i) => {
        const angle = Math.PI + (i * Math.PI / 20);
        return {
          x: 2.5 * Math.cos(angle),
          y: 2.5 * Math.sin(angle),
          z: 0,
        };
      }),
      color: getColor("PURPLE"),
      lineWidth: 2,
      showPoints: false,
      labels: [{ text: "θ = 180°", at: 10, offset: [0, -0.8, 0] }],
    },
    {
      points: Array.from({ length: 51 }, (_, i) => {
        const angle = Math.PI + (i * Math.PI / 50);
        return {
          x: 4 * Math.cos(angle),
          y: 4 * Math.sin(angle),
          z: 0,
        };
      }),
      color: getColor("AMBER"),
      lineWidth: 4,
      showPoints: false,
      labels: [{ text: "Semicircle (180°)", at: 25, offset: [0, -1, 0] }],
    },
    {
      points: Array.from({ length: 101 }, (_, i) => {
        const angle = i * (2 * Math.PI / 100);
        return {
          x: 4 * Math.cos(angle),
          y: 4 * Math.sin(angle),
          z: 0,
        };
      }),
      color: getColor("TEAL"),
      lineWidth: 1,
      showPoints: false,
      smooth: true,
    },
  ]}
  cameraPosition={[0, 0, 15]}
  showZAxis={false}
/>
## Arc Length Calculation
Arc length can be calculated using the ratio between the central angle and the full angle of the circle. The basic formula for calculating arc length is:
Where:
-  = arc length
-  = central angle measure in degrees
-  = radius of the circle
If the central angle is expressed in radians, the formula becomes simpler:
Where  is in radians.
## Example Application
Let's apply this concept in a concrete example. Suppose we have a circle with radius  and central angle .
First step, we calculate the arc length:
So the arc length faced by the central angle  is  or approximately .
Central Angle Example >}
  description={<>Circle with radius 6 cm and central angle .>}
  data={[
    {
      points: [
        { x: 0, y: 0, z: 0 },
        { x: 6, y: 0, z: 0 },
      ],
      color: getColor("PURPLE"),
      labels: [{ text: "r = 6 cm", at: 0.5, offset: [0, -0.5, 0] }],
      showPoints: true,
    },
    {
      points: [
        { x: 0, y: 0, z: 0 },
        { x: 6 * Math.cos(2 * Math.PI / 3), y: 6 * Math.sin(2 * Math.PI / 3), z: 0 },
      ],
      color: getColor("PURPLE"),
      labels: [{ text: "r = 6 cm", at: 0.5, offset: [-0.5, 0.3, 0] }],
      showPoints: true,
    },
    {
      points: Array.from({ length: 25 }, (_, i) => {
        const angle = i * (2 * Math.PI / 3) / 24;
        return {
          x: 3 * Math.cos(angle),
          y: 3 * Math.sin(angle),
          z: 0,
        };
      }),
      color: getColor("ORANGE"),
      lineWidth: 2,
      showPoints: false,
      labels: [{ text: "θ = 120°", at: 12, offset: [0.8, 0.8, 0] }],
    },
    {
      points: Array.from({ length: 41 }, (_, i) => {
        const angle = i * (2 * Math.PI / 3) / 40;
        return {
          x: 6 * Math.cos(angle),
          y: 6 * Math.sin(angle),
          z: 0,
        };
      }),
      color: getColor("ROSE"),
      lineWidth: 4,
      showPoints: false,
      labels: [{ text: "s = 4π cm", at: 20, offset: [-1, -1, 0] }],
    },
    {
      points: Array.from({ length: 101 }, (_, i) => {
        const angle = i * (2 * Math.PI / 100);
        return {
          x: 6 * Math.cos(angle),
          y: 6 * Math.sin(angle),
          z: 0,
        };
      }),
      color: getColor("INDIGO"),
      lineWidth: 1,
      showPoints: false,
      smooth: true,
    },
  ]}
  cameraPosition={[0, 0, 15]}
  showZAxis={false}
/>
## Applications in Daily Life
The concept of central angles on arcs has many practical applications. In gear design, central angles determine the distance between teeth. On analog clocks, clock hands move forming central angles that indicate time. Architects use this concept to design bridge arches or building domes.
In navigation, aircraft pilots use the concept of circular arcs to calculate travel distance when flying along curved paths on Earth's surface. The larger the central angle traversed, the farther the distance traveled.
## Exercises
1. A circle has a radius of 8 cm. If the central angle facing an arc is 45°, calculate the length of that arc.
2. Given that the arc length of a circle is 10π cm and its radius is 15 cm. Determine the measure of the central angle facing that arc.
3. In a circle with center O, there is a central angle . If the circle's radius is 5 cm, determine the length of arc AB and express the result in terms of π.
4. A bicycle wheel has a radius of 30 cm. If the wheel rotates forming a central angle of 150°, what distance is traveled by a point on the wheel's edge?
### Answer Key
1. **Solution:**
   
   Given:  and 
   
   Find: Arc length 
   
   **Step 1:** Use the arc length formula
   
   
   **Step 2:** Substitute the known values
   
   
   **Step 3:** Simplify the fraction
   
   
   **Step 4:** Calculate the final result
   
   
   Therefore, the arc length is  or approximately 6.28 cm.
2. **Solution:**
   
   Given:  and 
   
   Find: Central angle measure 
   
   **Step 1:** Use the arc length formula
   
   
   **Step 2:** Substitute the known values
   
   
   **Step 3:** Simplify the equation
   
   
   **Step 4:** Isolate θ
   
   
   **Step 5:** Calculate the final result
   
   
   Therefore, the central angle measure facing that arc is 120°.
3. **Solution:**
   
   Given:  and 
   
   Find: Length of arc AB
   
   **Step 1:** Use the arc length formula
   
   
   **Step 2:** Substitute the known values
   
   
   **Step 3:** Simplify the fraction
   
   
   **Step 4:** Calculate the final result
   
   
   Therefore, the length of arc AB is .
4. **Solution:**
   
   Given:  and 
   
   Find: Distance traveled (arc length)
   
   **Step 1:** Use the arc length formula
   
   
   **Step 2:** Substitute the known values
   
   
   **Step 3:** Simplify the fraction
   
   
   **Step 4:** Calculate the final result
   
   
   Therefore, the distance traveled by a point on the wheel's edge is  or approximately 78.54 cm.