Geometer Documentation Release 0.2.3

Total Page:16

File Type:pdf, Size:1020Kb

Geometer Documentation Release 0.2.3 geometer Documentation Release 0.2.3 Jan Müller Sep 27, 2021 Contents: 1 Installation 3 1.1 Quickstart................................................3 1.2 API Reference..............................................5 1.3 Changelog................................................ 36 2 Indices and tables 41 2.1 References................................................ 41 Python Module Index 43 Index 45 i ii geometer Documentation, Release 0.2.3 Geometer is a geometry library for Python that uses projective geometry and numpy for fast geometric computation. In projective geometry every point in 2D is represented by a three-dimensional vector and every point in 3D is represented by a four-dimensional vector. This has the following advantages: • There are points at infinity that can be treated just like normal points. • Projective transformations are described by matrices but they can also represent translations and general affine transformations. • Two lines have a unique point of intersection if they lie in the same plane. Parallel lines have a point of intersection at infinity. • Points of intersection, planes or lines through given points can be calculated using simple cross products or tensor diagrams. • Special complex points at infinity and cross ratios can be used to calculate angles and to construct perpendicular geometric structures. • Collections of points and lines can be represented by tensors. Their connecting lines and intersections can be calculated using fast matrix multiplications. Most of the computation in the library is done via tensor diagrams (using numpy.einsum). The source code of the package can be found on GitHub and the documentation on Read the Docs. Contents: 1 geometer Documentation, Release 0.2.3 2 Contents: CHAPTER 1 Installation You can install the package directly from PyPI: pip install geometer 1.1 Quickstart 1.1.1 Geometry in Two Dimensions The elementary objects of projective geometry, points and lines can be created using the Point and Line classes without having to specify the dimension: from geometer import * p= Point(2,4) q= Point(3,5) l= Line(p, q) m= Line(0,1,0) Here we specified a line once by two base points and once using the homogeneous coordinates of the line. The two elementary operations meet and join can also be called called exactly as one would expect: l= join(p, q) r= meet(l, m) Geometer can also construct parallel and perpendicular lines: m=l.parallel(through=Point(1,1)) n=l.perpendicular(through=Point(1,1)) is_perpendicular(m, n) The function is_perpendicular() returns True when two lines are perpendicular. Other angles an distances can also be calculated: 3 geometer Documentation, Release 0.2.3 a= angle(l, Point(1,0)) dist(l, p) import numpy as np p+2 *dist(p, q)*Point(np.cos(a), np.sin(a)) Projective transformations can be easily created using the methods rotation and translation or by supplying a matrix to the Transformation class: t1= translation(0,-1) t2= rotation(-np.pi) t3= Transformation([[0,1,0], [1,0,0], [0,0,1]]) t1*t2*p Geometer also includes tools to work with conics. They can be created using the classes Conic or Circle: a= Point(-1,0) b= Point(0,3) c= Point(1,2) d= Point(2,1) e= Point(0,-1) conic= Conic.from_points(a, b, c, d, e) To calculate cross ratios of points or lines, the function crossratio() can be used: t= rotation(np.pi/16) crossratio(q, t*q, t**2 * q, t**3 * q, p) Other interesting operators are harmonic_set(), angle_bisectors(), is_cocircular() and is_collinear(). 1.1.2 Geometry in Three Dimensions Creating points and lines in 3D works the same as in the two dimensional case: p1= Point(1,1,0) p2= Point(2,1,0) p3= Point(3,4,0) l= Line(p1, p2) In addition to points and lines, in three dimensions we can use the Plane class or the join operation to create planes: A= join(l, p3) A.project(Point(3,4,5)) Points can be projected onto planes and lines. The result is still a point in 3D but now lying on the plane. The point of intersection of a plane and a line can be calculated with the meet operation: l= Line(Point(1,2,3), Point(3,4,5)) A.meet(l) All other operations such as angles, distances, perpendicular lines, cross ratios are also compatible with objects in 3D. For information on their usage, you can look at the two dimensional example. 4 Chapter 1. Installation geometer Documentation, Release 0.2.3 1.2 API Reference 1.2.1 geometer package geometer.utils package geometer.utils.math.adjugate(A) Calculates the adjugate matrix of A. The resulting matrix is defined by i+j adj(A)ij = (−1) Mji; where Mji is the determinant of the submatrix of A obtained by deleting the j-th row and the i-th column of A. For small matrices, this function uses the following formula (Einstein notation): 1 adj(A) = " " A :::A ij (n − 1)! i i2:::in j j2:::jn j2i2 jnin Source (German): https://de.wikipedia.org/wiki/Levi-Civita-Symbol#Zusammenhang_mit_der_Determinante ParametersA ((. , M, M) array_like) – The input matrix. Returns The adjugate of A. Return type (.., M, M) numpy.ndarray geometer.utils.math.det(A) Computes the determinant of A. ParametersA ((. , M, M) array_like) – The input matrix. Returns The determinant of A. Return type (..) array_like geometer.utils.math.hat_matrix(*args) Builds a skew symmetric matrix with the given scalars in the positions shown below. 0 0 c −b1 @−c 0 a A b −a 0 Parameters a, b, c (float) – The scalars to use in the matrix. Returns The resulting antisymmetric matrix. Return type numpy.ndarray geometer.utils.math.inv(A) Computes the inverse of A. ParametersA ((. , M, M) array_like) – The input matrix. Returns The inverse of A. Return type (.., M, M) numpy.ndarray geometer.utils.math.is_multiple(a, b, axis=None, rtol=1e-15, atol=1e-08) Returns a boolean array where two arrays are scalar multiples of each other along a given axis. 1.2. API Reference 5 geometer Documentation, Release 0.2.3 This function compares the absolute value of the scalar product and the product of the norm of the arrays (along an axis). The Cauchy-Schwarz inequality guarantees in its edge case that this equality holds if and only if one of the vectors is a scalar multiple of the other. For documentation of the tolerance parameters see numpy.isclose(). Parameters • a, b (array_like) – Input arrays to compare. • axis (None or int or tuple of ints, optional) – The axis or axes along which the two arrays are compared. The default axis=None will compare the whole arrays and return only a single boolean value. • rtol (float, optional) – The relative tolerance parameter. • atol (float, optional) – The absolute tolerance parameter. Returns Returns a boolean array of where along the given axis the arrays are a scalar multiple of each other (within the given tolerance). If no axis is given, returns a single boolean value. Return type array_like geometer.utils.math.matmul(a, b, transpose_a=False, transpose_b=False, adjoint_a=False, ad- joint_b=False, **kwargs) Matrix product of two arrays. Parameters • a, b (array_like) – Input arrays, scalars not allowed. • transpose_a (bool) – If true, a is transposed before multiplication. • transpose_b (bool) – If true, b is transposed before multiplication. • adjoint_a (bool) – If true, a is conjugated and transposed before multiplication. • adjoint_b (bool) – If true, b is conjugated and transposed before multiplication. • **kwargs – Additional keyword arguments for numpy.matmul. Returns The matrix product of the inputs. Return type numpy.ndarray geometer.utils.math.matvec(a, b, transpose_a=False, adjoint_a=False, **kwargs) Matrix-vector product of two arrays. Parameters • a, b (array_like) – Input arrays, scalars not allowed. • transpose_a (bool) – If true, a is transposed before multiplication. • adjoint_a (bool) – If true, a is conjugated and transposed before multiplication. • **kwargs – Additional keyword arguments for numpy.matmul. Returns The matrix-vector product of the inputs. Return type numpy.ndarray geometer.utils.math.null_space(A, dim=None) Constructs an orthonormal basis for the null space of a A using SVD. Parameters • A ((. , M, N) array_like) – The input matrix. 6 Chapter 1. Installation geometer Documentation, Release 0.2.3 • dim (int or None, optional) – The dimension of the null space if previously known. Returns Orthonormal basis for the null space of A (as column vectors in the returned matrix). Return type (.., N, K) numpy.ndarray geometer.utils.math.orth(A, dim=None) Constructs an orthonormal basis for the range of A using SVD. Parameters • A ((. , M, N) array_like) – The input matrix. • dim (int or None, optional) – The dimension of the image space if previously known. Returns Orthonormal basis for the range of A (as column vectors in the returned matrix). Return type (.., M, K) numpy.ndarray geometer.utils.math.roots(p) Calculates the roots of a polynomial for the given coefficients. The polynomial is defined as p[0]xn + p[1]xn−1 + ::: + p[n − 1]x + p[n]: Parametersp (array_like) – The coefficients of the polynomial. Returns The roots of the polynomial. Return type array_like geometer.base module class geometer.base.KroneckerDelta(n, p=1) Bases: geometer.base.Tensor This class can be used to construct a (p, p)-tensor representing the Kronecker delta tensor. The following generalized definition of the Kronecker delta is used: 8 +1 if (휈 ; : : : ; 휈 ) are an even permutation of (휇 ; : : : ; 휇 ) <> 1 p 1 p 훿휇1...휇p = 휈1...휈p −1 if (휈1; : : : ; 휈p) are an odd permutation of (휇1; : : : ; 휇p) :>0 else Parameters • n (int) – The dimension of the tensor. • p (int, optional) – The number of covariant and contravariant indices of the tensor, default is 1. References class geometer.base.LeviCivitaTensor(size, covariant=True) Bases: geometer.base.Tensor This class can be used to construct a tensor representing the Levi-Civita symbol.
Recommended publications
  • Finite Projective Geometries 243
    FINITE PROJECTÎVEGEOMETRIES* BY OSWALD VEBLEN and W. H. BUSSEY By means of such a generalized conception of geometry as is inevitably suggested by the recent and wide-spread researches in the foundations of that science, there is given in § 1 a definition of a class of tactical configurations which includes many well known configurations as well as many new ones. In § 2 there is developed a method for the construction of these configurations which is proved to furnish all configurations that satisfy the definition. In §§ 4-8 the configurations are shown to have a geometrical theory identical in most of its general theorems with ordinary projective geometry and thus to afford a treatment of finite linear group theory analogous to the ordinary theory of collineations. In § 9 reference is made to other definitions of some of the configurations included in the class defined in § 1. § 1. Synthetic definition. By a finite projective geometry is meant a set of elements which, for sugges- tiveness, are called points, subject to the following five conditions : I. The set contains a finite number ( > 2 ) of points. It contains subsets called lines, each of which contains at least three points. II. If A and B are distinct points, there is one and only one line that contains A and B. HI. If A, B, C are non-collinear points and if a line I contains a point D of the line AB and a point E of the line BC, but does not contain A, B, or C, then the line I contains a point F of the line CA (Fig.
    [Show full text]
  • Natural Homogeneous Coordinates Edward J
    Advanced Review Natural homogeneous coordinates Edward J. Wegman∗ and Yasmin H. Said The natural homogeneous coordinate system is the analog of the Cartesian coordinate system for projective geometry. Roughly speaking a projective geometry adds an axiom that parallel lines meet at a point at infinity. This removes the impediment to line-point duality that is found in traditional Euclidean geometry. The natural homogeneous coordinate system is surprisingly useful in a number of applications including computer graphics and statistical data visualization. In this article, we describe the axioms of projective geometry, introduce the formalism of natural homogeneous coordinates, and illustrate their use with four applications. 2010 John Wiley & Sons, Inc. WIREs Comp Stat 2010 2 678–685 DOI: 10.1002/wics.122 Keywords: projective geometry; crosscap; perspective; parallel coordinates; Lorentz equations PROJECTIVE GEOMETRY Visualizing the projective plane is itself an intriguing exercise. One can imagine an ordinary atural homogeneous coordinates for projective Euclidean plane augmented by a set of points at geometry are the analog of Cartesian coordinates N infinity. Two parallel lines in Euclidean space would for ordinary Euclidean geometry. In two-dimensional meet at a point often called in elementary projective Euclidean geometry, we know that two points will geometry an ideal point. One could imagine that a always determine a line, but the dual statement, two pair of parallel lines would have an ideal point at each lines always determine a point, is not true in general end, i.e. one at −∞ and another at +∞. However, because parallel lines in two dimensions do not meet. there is only one ideal point for a set of parallel lines, The axiomatic framework for projective geometry not one at each end.
    [Show full text]
  • F. KLEIN in Leipzig ( *)
    “Ueber die Transformation der allgemeinen Gleichung des zweiten Grades zwischen Linien-Coordinaten auf eine canonische Form,” Math. Ann 23 (1884), 539-578. On the transformation of the general second-degree equation in line coordinates into a canonical form. By F. KLEIN in Leipzig ( *) Translated by D. H. Delphenich ______ A line complex of degree n encompasses a triply-infinite number of straight lines that are distributed in space in such a manner that those straight lines that go through a fixed point define a cone of order n, or − what says the same thing − that those straight lines that lie in a fixed planes will envelope a curve of class n. Its analytic representation finds such a structure by way of the coordinates of a straight line in space that Pluecker introduced into science ( ** ). According to Pluecker , the straight line has six homogeneous coordinates that fulfill a second-degree condition equation. The straight line will be determined relative to a coordinate tetrahedron by means of it. A homogeneous equation of degree n between these coordinates will represent a complex of degree n. (*) In connection with the republication of some of my older papers in Bd. XXII of these Annals, I am once more publishing my Inaugural Dissertation (Bonn, 1868), a presentation by Lie and myself to the Berlin Academy on Dec. 1870 (see the Monatsberichte), and a note on third-order differential equations that I presented to the sächsischen Gesellschaft der Wissenschaften (last note, with a recently-added Appendix). The Mathematischen Annalen thus contain the totality of my publications up to now, with the single exception of a few that are appearing separately in the book trade, and such provisional publications that were superfluous to later research.
    [Show full text]
  • Homogeneous Representations of Points, Lines and Planes
    Chapter 5 Homogeneous Representations of Points, Lines and Planes 5.1 Homogeneous Vectors and Matrices ................................. 195 5.2 Homogeneous Representations of Points and Lines in 2D ............... 205 n 5.3 Homogeneous Representations in IP ................................ 209 5.4 Homogeneous Representations of 3D Lines ........................... 216 5.5 On Plücker Coordinates for Points, Lines and Planes .................. 221 5.6 The Principle of Duality ........................................... 229 5.7 Conics and Quadrics .............................................. 236 5.8 Normalizations of Homogeneous Vectors ............................. 241 5.9 Canonical Elements of Coordinate Systems ........................... 242 5.10 Exercises ........................................................ 245 This chapter motivates and introduces homogeneous coordinates for representing geo- metric entities. Their name is derived from the homogeneity of the equations they induce. Homogeneous coordinates represent geometric elements in a projective space, as inhomoge- neous coordinates represent geometric entities in Euclidean space. Throughout this book, we will use Cartesian coordinates: inhomogeneous in Euclidean spaces and homogeneous in projective spaces. A short course in the plane demonstrates the usefulness of homogeneous coordinates for constructions, transformations, estimation, and variance propagation. A characteristic feature of projective geometry is the symmetry of relationships between points and lines, called
    [Show full text]
  • Integrability, Normal Forms, and Magnetic Axis Coordinates
    INTEGRABILITY, NORMAL FORMS AND MAGNETIC AXIS COORDINATES J. W. BURBY1, N. DUIGNAN2, AND J. D. MEISS2 (1) Los Alamos National Laboratory, Los Alamos, NM 97545 USA (2) Department of Applied Mathematics, University of Colorado, Boulder, CO 80309-0526, USA Abstract. Integrable or near-integrable magnetic fields are prominent in the design of plasma confinement devices. Such a field is characterized by the existence of a singular foliation consisting entirely of invariant submanifolds. A regular leaf, known as a flux surface,of this foliation must be diffeomorphic to the two-torus. In a neighborhood of a flux surface, it is known that the magnetic field admits several exact, smooth normal forms in which the field lines are straight. However, these normal forms break down near singular leaves including elliptic and hyperbolic magnetic axes. In this paper, the existence of exact, smooth normal forms for integrable magnetic fields near elliptic and hyperbolic magnetic axes is established. In the elliptic case, smooth near-axis Hamada and Boozer coordinates are defined and constructed. Ultimately, these results establish previously conjectured smoothness properties for smooth solutions of the magnetohydro- dynamic equilibrium equations. The key arguments are a consequence of a geometric reframing of integrability and magnetic fields; that they are presymplectic systems. Contents 1. Introduction 2 2. Summary of the Main Results 3 3. Field-Line Flow as a Presymplectic System 8 3.1. A perspective on the geometry of field-line flow 8 3.2. Presymplectic forms and Hamiltonian flows 10 3.3. Integrable presymplectic systems 13 arXiv:2103.02888v1 [math-ph] 4 Mar 2021 4.
    [Show full text]
  • Geometry of Perspective Imaging Images of the 3-D World
    Geometry of perspective imaging ■ Coordinate transformations ■ Image formation ■ Vanishing points ■ Stereo imaging Image formation Images of the 3-D world ■ What is the geometry of the image of a three dimensional object? – Given a point in space, where will we see it in an image? – Given a line segment in space, what does its image look like? – Why do the images of lines that are parallel in space appear to converge to a single point in an image? ■ How can we recover information about the 3-D world from a 2-D image? – Given a point in an image, what can we say about the location of the 3-D point in space? – Are there advantages to having more than one image in recovering 3-D information? – If we know the geometry of a 3-D object, can we locate it in space (say for a robot to pick it up) from a 2-D image? Image formation Euclidean versus projective geometry ■ Euclidean geometry describes shapes “as they are” – properties of objects that are unchanged by rigid motions » lengths » angles » parallelism ■ Projective geometry describes objects “as they appear” – lengths, angles, parallelism become “distorted” when we look at objects – mathematical model for how images of the 3D world are formed Image formation Example 1 ■ Consider a set of railroad tracks – Their actual shape: » tracks are parallel » ties are perpendicular to the tracks » ties are evenly spaced along the tracks – Their appearance » tracks converge to a point on the horizon » tracks don’t meet ties at right angles » ties become closer and closer towards the horizon Image formation Example 2 ■ Corner of a room – Actual shape » three walls meeting at right angles.
    [Show full text]
  • Intro to Line Geom and Kinematics
    TEUBNER’S MATHEMATICAL GUIDES VOLUME 41 INTRODUCTION TO LINE GEOMETRY AND KINEMATICS BY ERNST AUGUST WEISS ASSOC. PROFESSOR AT THE RHENISH FRIEDRICH-WILHELM-UNIVERSITY IN BONN Translated by D. H. Delphenich 1935 LEIPZIG AND BERLIN PUBLISHED AND PRINTED BY B. G. TEUBNER Foreword According to Felix Klein , line geometry is the geometry of a quadratic manifold in a five-dimensional space. According to Eduard Study , kinematics – viz., the geometry whose spatial element is a motion – is the geometry of a quadratic manifold in a seven- dimensional space, and as such, a natural generalization of line geometry. The geometry of multidimensional spaces is then connected most closely with the geometry of three- dimensional spaces in two different ways. The present guide gives an introduction to line geometry and kinematics on the basis of that coupling. 2 In the treatment of linear complexes in R3, the line continuum is mapped to an M 4 in R5. In that subject, the linear manifolds of complexes are examined, along with the loci of points and planes that are linked to them that lead to their analytic representation, with the help of Weitzenböck’s complex symbolism. One application of the map gives Lie ’s line-sphere transformation. Metric (Euclidian and non-Euclidian) line geometry will be treated, up to the axis surfaces that will appear once more in ray geometry as chains. The conversion principle of ray geometry admits the derivation of a parametric representation of motions from Euler ’s rotation formulas, and thus exhibits the connection between line geometry and kinematics. The main theorem on motions and transfers will be derived by means of the elegant algebra of biquaternions.
    [Show full text]
  • The Intersection Conics of Six Straight Lines
    Beitr¨agezur Algebra und Geometrie Contributions to Algebra and Geometry Volume 46 (2005), No. 2, 435-446. The Intersection Conics of Six Straight Lines Hans-Peter Schr¨ocker Institute of Engineering Mathematics, Geometry and Informatics Innsbruck University e-mail: [email protected] Abstract. We investigate and visualize the manifold M of planes that intersect six straight lines of real projective three space in points of a conic section. It is dual to the apex-locus of the cones of second order that have six given tangents. In general M is algebraic of dimension two and class eight. It has 30 single and six double lines. We consider special cases, derive an algebraic equation of the manifold and give an efficient algorithm for the computation of solution planes. 1. Introduction Line geometry of projective three space is a well-established but still active field of geo- metric research. Right now the time seems to be right for tackling previously impossible computational problems of line space by merging profound theoretical knowledge with the computational power of modern computer algebra systems. An introduction and detailed overview of recent developments can be found in [5]. The present paper is a contribution to this area. It deals with conic sections that intersect six fixed straight lines of real projective three space P 3. The history of this problem dates back to the 19th century when A. Cayley and L. Cre- mona tried to determine ruled surfaces of degree four to six straight lines of a linear complex (compare the references in [4]).
    [Show full text]
  • 3 Homogeneous Coordinates
    3 Homogeneous coordinates Ich habe bei den folgenden Entwicklungen nur die Absicht gehabt [...] zu zeigen, dass die neue Methode [...] zum Beweise einzelner Stze und zur Darstellung allgemeiner Theorien sich sehr geschmeidig zeigt. Julius Pl¨ucker, Ueber ein neues Coordinatensystem, 1829 3.1 A spatial point of view Let K be any field1. And let K3 the vector space of dimension three over this field. We will prove that if we consider the one dimensional subspaces of K3 as points and the two dimensional subspaces as lines, then we obtain a projective plane by defining incidence as subspace containment. We will prove this fact by creating a more concrete coordinate representa- tion of the one- and two-dimensional subspaces of K3. This will allow us to be able to calculate with these objects easily. For this we first form equivalence classes of vectors by identifying all vectors v K3 that differ by a non-zero multiple: ∈ [v] := v! K3 v! = λ v for λ K 0 . { ∈ | · ∈ \{ }} K3\{(0,0,0)} The set of all such equivalence classes could be denoted K\{0} ; all non- zero vectors modulo scalar non-zero multiples. Replacing a vector by its equiv- alence class preserves many interesting structural properties. In particular, two 1 This is almost the only place in this book where we will refer to an arbitrary field K. All other considerations will be much more “down to earth and refer to specific fields” – mostly the real numbers R or the complex numbers C 54 3 Homogeneous coordinates vectors v1,v2 are orthogonal if their scalar product vanishes: v1,v2 = 0.
    [Show full text]
  • Arxiv:1802.05507V1 [Math.DG]
    SURFACES IN LAGUERRE GEOMETRY EMILIO MUSSO AND LORENZO NICOLODI Abstract. This exposition gives an introduction to the theory of surfaces in Laguerre geometry and surveys some results, mostly obtained by the au- thors, about three important classes of surfaces in Laguerre geometry, namely L-isothermic, L-minimal, and generalized L-minimal surfaces. The quadric model of Lie sphere geometry is adopted for Laguerre geometry and the method of moving frames is used throughout. As an example, the Cartan–K¨ahler theo- rem for exterior differential systems is applied to study the Cauchy problem for the Pfaffian differential system of L-minimal surfaces. This is an elaboration of the talks given by the authors at IMPAN, Warsaw, in September 2016. The objective was to illustrate, by the subject of Laguerre surface geometry, some of the topics presented in a series of lectures held at IMPAN by G. R. Jensen on Lie sphere geometry and by B. McKay on exterior differential systems. 1. Introduction Laguerre geometry is a classical sphere geometry that has its origins in the work of E. Laguerre in the mid 19th century and that had been extensively studied in the 1920s by Blaschke and Thomsen [6, 7]. The study of surfaces in Laguerre geometry is currently still an active area of research [2, 37, 38, 42, 43, 44, 47, 49, 53, 54, 55] and several classical topics in Laguerre geometry, such as Laguerre minimal surfaces and Laguerre isothermic surfaces and their transformation theory, have recently received much attention in the theory of integrable systems [46, 47, 57, 60, 62], in discrete differential geometry, and in the applications to geometric computing and architectural geometry [8, 9, 10, 58, 59, 61].
    [Show full text]
  • 12 Notation and List of Symbols
    12 Notation and List of Symbols Alphabetic ℵ0, ℵ1, ℵ2,... cardinality of infinite sets ,r,s,... lines are usually denoted by lowercase italics Latin letters A,B,C,... points are usually denoted by uppercase Latin letters π,ρ,σ,... planes and surfaces are usually denoted by lowercase Greek letters N positive integers; natural numbers R real numbers C complex numbers 5 real part of a complex number 6 imaginary part of a complex number R2 Euclidean 2-dimensional plane (or space) P2 projective 2-dimensional plane (or space) RN Euclidean N-dimensional space PN projective N-dimensional space Symbols General ∈ belongs to such that ∃ there exists ∀ for all ⊂ subset of ∪ set union ∩ set intersection A. Inselberg, Parallel Coordinates, DOI 10.1007/978-0-387-68628-8, © Springer Science+Business Media, LLC 2009 532 Notation and List of Symbols ∅ empty st (null set) 2A power set of A, the set of all subsets of A ip inflection point of a curve n principal normal vector to a space curve nˆ unit normal vector to a surface t vector tangent to a space curve b binormal vector τ torsion (measures “non-planarity” of a space curve) × cross product → mapping symbol A → B correspondence (also used for duality) ⇒ implies ⇔ if and only if <, > less than, greater than |a| absolute value of a |b| length of vector b norm, length L1 L1 norm L L norm, Euclidean distance 2 2 summation Jp set of integers modulo p with the operations + and × ≈ approximately equal = not equal parallel ⊥ perpendicular, orthogonal (,,) homogeneous coordinates — ordered triple representing
    [Show full text]
  • In Particular, Line and Sphere Complexes – with Applications to the Theory of Partial Differential Equations
    “Ueber Complexe, insbesondere Linien- und Kugel-complexe, mit Anwendung auf die Theorie partieller Differentialgleichungen,” Math. Ann. 5 (1872), 145-208. On complexes −−− in particular, line and sphere complexes – with applications to the theory of partial differential equations By Sophus Lie in CHRISTIANIA Translated by D. H. Delphenich _______ I. The rapid development of geometry in our century is, as is well-known, intimately linked with philosophical arguments about the essence of Cartesian geometry, arguments that were set down in their most general form by Plücker in his early papers. For anyone who proceeds in the spirit of Plücker’s work, the thought that one can employ every curve that depends on three parameters as a space element will convey nothing that is essentially new, so if no one, as far as I know, has pursued this idea then I believe that the reason for this is that no one has ascribed any practical utility to that fact. I was led to study the aforementioned theory when I discovered a remarkable transformation that represented a precise connection between lines of curvature and principal tangent curves, and it is my intention to summarize the results that I obtained in this way in the following treatise. In the first section, I concern myself with curve complexes – that is, manifolds that are composed of a three-fold infinitude of curves. All surfaces that are composed of a single infinitude of curves from a given complex satisfy a partial differential equation of second order that admits a partial differential equation of first order as its singular first integral.
    [Show full text]