13.2 Vectors in 3D (part 2)
Vectors can be used to build shapes.
For example, sphere:
Vector from center \( C(h, k, l) \) to point on sphere \( (x, y, z) \) must have a magnitude of \( r \) (radius).
Vector from center to point: \( \langle x-h, y-k, z-l \rangle \)
\[ |\langle x-h, y-k, z-l \rangle| = r \]
\[ \sqrt{(x-h)^2 + (y-k)^2 + (z-l)^2} = r \]
\[ (x-h)^2 + (y-k)^2 + (z-l)^2 = r^2 \]
Standard form of eq. of sphere