Tangency for spheres. #
This file defines notions of spheres being tangent to affine subspaces and other spheres.
Main definitions #
EuclideanGeometry.Sphere.orthRadius
: the affine subspace orthogonal to the radius vector at a point (the tangent space, if that point lies in the sphere).EuclideanGeometry.Sphere.IsTangentAt
: the property of an affine subspace being tangent to a sphere at a given point.EuclideanGeometry.Sphere.IsTangent
: the property of an affine subspace being tangent to a sphere at some point.EuclideanGeometry.Sphere.tangentSet
: the set of all maximal tangent spaces to a given sphere.EuclideanGeometry.Sphere.tangentsFrom
: the set of all maximal tangent spaces to a given sphere and containing a given point.EuclideanGeometry.Sphere.commonTangents
: the set of all maximal common tangent spaces to two given spheres.EuclideanGeometry.Sphere.commonIntTangents
: the set of all maximal common internal tangent spaces to two given spheres.EuclideanGeometry.Sphere.commonExtTangents
: the set of all maximal common external tangent spaces to two given spheres.EuclideanGeometry.Sphere.IsExtTangentAt
: the property of two spheres being externally tangent at a given point.EuclideanGeometry.Sphere.IsIntTangentAt
: the property of two spheres being internally tangent at a given point.EuclideanGeometry.Sphere.IsExtTangent
: the property of two spheres being externally tangent.EuclideanGeometry.Sphere.IsIntTangent
: the property of two spheres being internally tangent.
The affine subspace orthogonal to the radius vector of the sphere s
at the point p
(in
the typical cases, p
lies in s
and this is the tangent space).
Equations
- s.orthRadius p = AffineSubspace.mk' p (Submodule.span ℝ {p -ᵥ s.center})ᗮ
Instances For
The affine subspace as
is tangent to the sphere s
at the point p
.
Instances For
The affine subspace as
is tangent to the sphere s
at some point.
Equations
- s.IsTangent as = ∃ (p : P), s.IsTangentAt p as
Instances For
The set of all maximal tangent spaces to the sphere s
.
Equations
- s.tangentSet = s.orthRadius '' Metric.sphere s.center s.radius
Instances For
The set of all maximal tangent spaces to the sphere s
containing the point p
.
Equations
- s.tangentsFrom p = {as : AffineSubspace ℝ P | as ∈ s.tangentSet ∧ p ∈ as}
Instances For
The set of all maximal common tangent spaces to the spheres s₁
and s₂
.
Equations
- s₁.commonTangents s₂ = s₁.tangentSet ∩ s₂.tangentSet
Instances For
The set of all maximal common internal tangent spaces to the spheres s₁
and s₂
: tangent
spaces containing a point weakly between the centers of the spheres.
Equations
- s₁.commonIntTangents s₂ = {as : AffineSubspace ℝ P | as ∈ s₁.commonTangents s₂ ∧ ∃ p ∈ as, Wbtw ℝ s₁.center p s₂.center}
Instances For
The set of all maximal common external tangent spaces to the spheres s₁
and s₂
: tangent
spaces not containing a point strictly between the centers of the spheres. (In the degenerate case
where the two spheres are the same sphere with radius 0, the space is considered both an internal
and an external common tangent.)
Equations
Instances For
The spheres s₁
and s₂
are externally tangent at the point p
.
Instances For
The sphere s₁
is internally tangent to the sphere s₂
at the point p
(that is, s₁
lies
inside s₂
and is tangent to it at that point). This includes the degenerate case where the
spheres are the same.
Instances For
The spheres s₁
and s₂
are externally tangent at some point.
Equations
- s₁.IsExtTangent s₂ = ∃ (p : P), s₁.IsExtTangentAt s₂ p
Instances For
The sphere s₁
is internally tangent to the sphere s₂
at some point.
Equations
- s₁.IsIntTangent s₂ = ∃ (p : P), s₁.IsIntTangentAt s₂ p