Standard and Expanded Forms
A sphere centred at (h, k, l) with radius r satisfies the standard equation. When expanded algebraically, it takes on a different but equivalent appearance.
Standard form: (x − h)² + (y − k)² + (z − l)² = r²
Expanded form: x² + y² + z² + Ex + Fy + Gz + H = 0
where: E = −2h, F = −2k, G = −2l, H = h² + k² + l² − r²
h, k, l— Coordinates of the sphere's centre point in 3D spacer— Radius of the spherex, y, z— Coordinates of any point on the sphere's surfaceE, F, G, H— Coefficients in the expanded equation form
Deriving the Sphere Equation from First Principles
The sphere equation emerges directly from the distance formula in three dimensions. A sphere comprises all points that maintain a constant distance (the radius) from a fixed centre.
If point S(x, y, z) lies on a sphere centred at (h, k, l), the Euclidean distance between them must equal r:
distance = √[(x−h)² + (y−k)² + (z−l)²] = r
Squaring both sides eliminates the square root and gives the standard form. This approach mirrors how the circle equation works in two dimensions, extending the concept into 3D space. The algebra becomes clearer when you expand the standard form by distributing the squared terms, collecting like powers, and regrouping constants—a process that yields the general form.
Finding the Equation from Diameter Endpoints
When you know only the endpoints of a diameter, you can reconstruct the full equation without explicit radius information.
Given diameter endpoints A(x₁, y₁, z₁) and B(x₂, y₂, z₂), the centre lies at the midpoint:
h = (x₁ + x₂) / 2k = (y₁ + y₂) / 2l = (z₁ + z₂) / 2
The radius is half the diameter's length. Calculate the distance between the endpoints to get the diameter, then divide by 2. Alternatively, use the distance from the centre to either endpoint as the radius. This method is particularly useful in geometry problems where you're given symmetric data about the sphere but not its center explicitly.
Using Centre and a Surface Point
If you know the centre (h, k, l) and any single point P(pₓ, pᵧ, p_z) that lies on the sphere, the radius is simply the distance between them:
r = √[(pₓ−h)² + (pᵧ−k)² + (p_z−l)²]
Once you have the radius, substitute it and the centre coordinates into the standard form equation. This approach is common in practical scenarios where you might measure or observe a sphere's centre and a point on its surface, then need to determine its full equation or predict other properties like volume or surface area.
Common Pitfalls and Practical Notes
Avoid these frequent mistakes when working with sphere equations.
- Mixing up diameter and radius — Always verify whether your given value is the radius or the diameter. If you have the diameter, divide by 2 before substituting into the standard form. Accidentally using diameter as radius will quadruple your computed surface area and eightfold the volume.
- Sign errors in coefficient conversion — When converting from standard to expanded form, the coefficients <code>E</code>, <code>F</code>, and <code>G</code> are negative double the centre coordinates. A sign error here means extracting the wrong centre from the expanded equation.
- Forgetting the constant term — The <code>H</code> coefficient in the expanded form includes both positive squared centre values and a negative <code>r²</code>. Omitting this constant or computing it incorrectly will make the equation unsolvable for the radius.
- Incomplete algebraic expansion — When manually expanding <code>(x−h)²</code>, ensure you distribute fully: <code>x² − 2hx + h²</code>. Skipping the middle term leaves an asymmetric, incorrect equation.