Andromeda
Note

Circle Equations

Definition

Algebraic representations of a circle, the set of all points in a plane equidistant from a fixed center (h,k)(h, k) with radius rr.

Why It Matters

Equations allow geometric concepts like constant distance to be manipulated algebraically for collision detection and coordinate tracking.

Core Concepts

  • Standard Form: (xh)2+(yk)2=r2(x - h)^2 + (y - k)^2 = r^2.
    • How to read: “The quantity x minus h squared plus the quantity y minus k squared equals r squared.”
    • Meaning / when to use: Direct read-off of center (h,k)(h,k) and radius rr. Derived from the distance formula with fixed distance rr.
  • General Form: x2+y2+ax+by+c=0x^2 + y^2 + ax + by + c = 0.
    • How to read: “The value x squared plus y squared plus a x plus b y plus c equals zero.”
    • Meaning: Expanded form; complete the square on xx and yy to recover standard form and identify center/radius.
  • Unit Circle: A circle centered at (0,0)(0, 0) with r=1r = 1, defined by x2+y2=1x^2 + y^2 = 1.
    • How to read: “The value x squared plus y squared equals one.”
    • Meaning: Every point satisfies x2+y2=1x^2 + y^2 = 1; the foundation for trigonometry on the unit circle.

Connected Concepts