Frustum of a Cone Volume Calculator
Compute the volume of a frustum of a cone (a truncated right circular cone) from the two parallel-circle radii and the h...
Everyday arithmetic, algebra, and geometry — worked out clearly.
Percentages, fractions, ratios, geometry, and the little calculations that come up all the time — with formulas you can reuse anywhere.
Compute the volume of a frustum of a cone (a truncated right circular cone) from the two parallel-circle radii and the h...
Compute the (x, y) intersection of two lines a₁·x + b₁·y = c₁ and a₂·x + b₂·y = c₂ via the determinant. Returns the uniq...
Compute the Euclidean distance between two points in 3D space, given their (x, y, z) coordinates.
Compute the volume of a spherical cap (the portion of a sphere cut off by a plane) from the sphere's radius and the cap'...
Compute the circumradius R of a triangle from its three side lengths a, b, c: R = abc / (4·area), where area is computed...
Compute the central angle subtended at the centre of a circle by an arc of given arc length, using the radius: θ_radians...
Compute the curved (spherical) surface area S_cap = 2·π·R·h of a spherical cap of height h cut from a sphere of radius R...
Compute the midpoint of a line segment between two points in 2D (set z₁ = z₂ = 0) or 3D space — i.e. the component-wise...
Compute the angle between two 3D vectors using cos θ = (a·b) / (|a| · |b|), and report the angle in both degrees and rad...
Compute the great-circle distance between two latitude/longitude points on Earth using the Haversine formula (mean Earth...
Convert a polar coordinate (r, θ) into the Cartesian coordinate (x, y) = (r cos θ, r sin θ), with θ entered in degrees.
Convert a Cartesian coordinate (x, y) to polar (r, θ), with r = √(x² + y²) and θ = atan2(y, x).
Compute the area of a parallelogram from a base and the perpendicular height to that base.
Compute the area of a rhombus from the lengths of its two diagonals.
Compute the area of a kite from the lengths of its two diagonals.