3 Two-Dimensional Linear Algebra

Total Page:16

File Type:pdf, Size:1020Kb

3 Two-Dimensional Linear Algebra 3 Two-Dimensional Linear Algebra 3.1 Basic Rules Vectors are the way we represent points in 2, 3 and 4, 5, 6, ..., n, ...-dimensional space. There even exist spaces of vectors which are said to be infinite- dimensional! A vector can be considered as an object which has a length and a direction, or it can be thought of as a point in space, with coordinates representing that point. In terms of coordinates, we shall use the notation µ ¶ x x = y for a column vector. This vector denotes the point in the xy-plane which is x units in the horizontal direction and y units in the vertical direction from the origin. We shall write xT = (x, y) for the row vector which corresponds to x, and the superscript T is read transpose. This is the operation which flips between two equivalent represen- tations of a vector, but since they represent the same point, we can sometimes be quite cavalier and not worry too much about whether we have a vector or its transpose. To avoid the problem of running out of letters when using vectors we shall also write vectors in the form (x1, x2) or (x1, x2, x3, .., xn). If we write R for real, one-dimensional numbers, then we shall also write R2 to denote the two-dimensional space of all vectors of the form (x, y). We shall use this notation too, and R3 then means three-dimensional space. By analogy, n-dimensional space is the set of all n-tuples {(x1, x2, ..., xn): x1, x2, ..., xn ∈ R} , where R is the one-dimensional number line. This n-dimensional space is written Rn. 1 3.2 Vector operations Vectors have several important operations associated with them. Firstly, 1. there is a vector addition x + y = (x1, x2) + (y1, y2) = (x1 + y1, x2 + y2), 2. and there is scalar multiplication tx = t(x1, x2) = (tx1, tx2), where t ∈ R is said to be a scalar. Let us note that the terms scalar and real number are synonyms. Rule 2, scalar multiplication, implies that there is always a so-called zero vector. Just set t = 0, 0 = (0, 0) and note that this satisfies x + 0 = x for every vector x. Example 3.1 To perform vector addition, just add componentwise: viz, (0, 1) + (0, −1) = (0, 1 − 1) = (0, 0), and (2, 1) + (3, 3) = (2 + 3, 1 + 3) = (5, 4). Let us note that every vector (x, y) ∈ R2 can be written in the form µ ¶ µ ¶ µ ¶ x 1 0 = x + y . y 0 1 The two vectors that we use to form this decomposition are called basis vectors and are the building blocks of two-dimensional space and we shall use i and j to denote them. In three-dimensional space, R3, we also have a set of basis vectors and if (x, y, z) ∈ R3 then 0 1 0 1 0 1 0 1 x 1 0 0 @ y A = x @ 0 A + y @ 1 A + z @ 0 A , z 0 0 1 2 Figure 1: The parallelogram law of vector addition a a+b b 0 and we shall write this x = xi + yj + zk. Throughout, bold font (x, y, z) is used to denote vectors and Greek mi- nuscules and roman fonts (λ, µ, s, t) are used to denote scalars. You are encouraged to use underlined characters, x, y, z, to denote vectors in order to distinguish them from scalars. Sometimes, you will also see vectors written using an arrow −→x , and you may use this notation too. The operation of vector addition must be well-defined, that is, it must be clear how to perform it. To explain what this means, try and perform the addition 2 + (99, 31) ! This makes no sense, and this is because scalars and vectors are distinct objects. Of course, we can perform the addition (2, 0) + (99, 31), but (2, 0) and the number 2 are not the same type of object: one is a vector and one is a scalar. 3.3 Scalar Products and Angles T 2 T 2 If x = (x1, x2) ∈ R and y = (y1, y2) ∈ R , then we define their inner, dot or scalar product x • y by x • y = x1y1 + x2y2. 3 Example 3.2 For instance, if we recall the basis vectors i = (1, 0) and j = (0, 1), then x • i = x1 and x • j = x2. Also, i • j = 0. i • i = 1, j • j = 1, We shall also write the scalar product in the form µ ¶ T y1 x • y = x y = (x1, x2) = x1y1 + x2y2. y2 Example 3.3 µ ¶ µ ¶ µ ¶ 2 9 9 • = (2, 3) = 18 + 3 = 21. 3 1 1 Using the scalar product, we can define the length of a vector as follows. Definition 3.1 The length of a vector is given by √ |x| = + x • x. This is also sometimes called the norm of x. The vector ˆx = x/|x| is called the unit vector in the x-direction. The function x 7→ |x|, where x ∈ R, is called the modulus or absolute value function and this can be thought of as the length function for one-dimensional vectors! Example 3.4 The vectors i and j are unit vectors as their length equals one. The length of a number t ∈ R is given by √ |t| = + t2. This simply means stripping its sign away, for instance |−5| = 5 and |5| = 5 too. 4 Figure 2: The angle between two vectors. a a . b = |a||b| cos( ) b 0 Let us note that if t is a scalar and x a vector, then we have the result |tx| = |t||x|. Now, the angle θ between two vectors x and y is calculated according to the rule |x||y| cos(θ) = x • y, where we take 0 ≤ θ ≤ π. Example 3.5 The cosine of the angle, θ, between the two vectors (2, 3) and (9, 1) is µ ¶ µ ¶ x • y 1 2 9 21 cos θ = = √ √ • = √ √ . |x||y| 4 + 9 81 + 1 3 1 13 82 Hence θ ≈ 0.8721 radians. Let us now give a mathematical definition of what it means for two vector to lie ‘at right angles’ to one another. Definition 3.2 Two vectors, x and y, are said to be normal or orthogonal if x • y = 0. The following are examples of orthogonal vectors. Example 3.6 The basis vectors i and j are orthogonal, and the pair {i, j} is called an orthogonal basis for this reason. Example 3.7 The following are orthogonal pairs of vectors, {(2, 2), (2, −2)}, {(−1, −1), (−2, 2)}, {(1, 1/2), (−1, 2)}. 5 3.4 The Scalar Product Properties The following properties or rules of the scalar product are easily verified from its definition. Suppose that s, t are scalars and x, y and z are vectors, then 1. x • y = y • x, 2. x • (ty) = tx • y, 3. x • (z + y) = x • y + x • z. For example, using only these properties we can prove, in a strict, math- ematical sense, the following theorem. Theorem 3.1 For all vectors x, y ∈ R2, we find |x • y| ≤ |x||y|. Proof 3.1 Let t ∈ R be any scalar, and consider the function of t defined by q(t) = (x + ty) • (x + ty). Using Properties 2 and 3 of the scalar product, we see that q(t) = x • (x + ty) + ty • (x + ty), = x • x + tx • y + ty • x + t2y • y, = |x|2 + 2tx • y + t2|y|2. However, q(t) ≥ 0 since it is the length2 of the vector x + ty, which is necessarily non-negative, and q is a quadratic function of t. Therefore, q has either no real roots or a repeated real root, and its discriminant must therefore be non-positive, so that 4(x • y)2 − 4|x|2|y|2 ≤ 0, and the given inequality follows after taking positive square roots. This theorem gives us the important piece of information that the equa- tion for the angle between two vectors, cos(θ) = x • y/|x||y|, always has a solution θ. If you are unsure as to the reasoning in the above proof, the following information may help you. 6 Remark 3.1 Let us recall that the discriminant of the quadratic at2 + bt + c is the expression b2 − 4ac, and that the solutions to at2 + bt + c = 0 are 1 ³ √ ´ t = −b ± b2 − 4ac . 2a Hence if the discriminant if negative, the given quadratic has no real roots, and if the discriminant is zero then t = −b/2a is a repeated, real root. 3.5 The Equation of a Line 3.5.1 The Parametric Equation A unit vector is one way of representing a direction without having to worry about distances. For instance, if t is a scalar (in R) then as t varies, x `(t) = tˆx = t |x| is a function which represents a line in space along the direction of x which also passes through the origin (0, 0). The length of the vector `(t) is just |t|, that is ¯ ¯ ¯ ¯ ¯ x ¯ ¯ x ¯ |x| |`(t)| = ¯ t ¯ = |t| ¯ ¯ = |t| = |t|. ¯ |x|¯ ¯|x|¯ |x| By shifting this line, which simply means adding another vector to it, we can construct a line between any two points in space. So, let a, b ∈ R2 be any two vectors and define the function L(t) := ta + (1 − t)b, then L(0) = b and L(1) = a. This is the parametric equation of the line which passes through the two points determined by a and b.
Recommended publications
  • DERIVATIONS and PROJECTIONS on JORDAN TRIPLES an Introduction to Nonassociative Algebra, Continuous Cohomology, and Quantum Functional Analysis
    DERIVATIONS AND PROJECTIONS ON JORDAN TRIPLES An introduction to nonassociative algebra, continuous cohomology, and quantum functional analysis Bernard Russo July 29, 2014 This paper is an elaborated version of the material presented by the author in a three hour minicourse at V International Course of Mathematical Analysis in Andalusia, at Almeria, Spain September 12-16, 2011. The author wishes to thank the scientific committee for the opportunity to present the course and to the organizing committee for their hospitality. The author also personally thanks Antonio Peralta for his collegiality and encouragement. The minicourse on which this paper is based had its genesis in a series of talks the author had given to undergraduates at Fullerton College in California. I thank my former student Dana Clahane for his initiative in running the remarkable undergraduate research program at Fullerton College of which the seminar series is a part. With their knowledge only of the product rule for differentiation as a starting point, these enthusiastic students were introduced to some aspects of the esoteric subject of non associative algebra, including triple systems as well as algebras. Slides of these talks and of the minicourse lectures, as well as other related material, can be found at the author's website (www.math.uci.edu/∼brusso). Conversely, these undergraduate talks were motivated by the author's past and recent joint works on derivations of Jordan triples ([116],[117],[200]), which are among the many results discussed here. Part I (Derivations) is devoted to an exposition of the properties of derivations on various algebras and triple systems in finite and infinite dimensions, the primary questions addressed being whether the derivation is automatically continuous and to what extent it is an inner derivation.
    [Show full text]
  • Triple Product Formula and the Subconvexity Bound of Triple Product L-Function in Level Aspect
    TRIPLE PRODUCT FORMULA AND THE SUBCONVEXITY BOUND OF TRIPLE PRODUCT L-FUNCTION IN LEVEL ASPECT YUEKE HU Abstract. In this paper we derived a nice general formula for the local integrals of triple product formula whenever one of the representations has sufficiently higher level than the other two. As an application we generalized Venkatesh and Woodbury’s work on the subconvexity bound of triple product L-function in level aspect, allowing joint ramifications, higher ramifications, general unitary central characters and general special values of local epsilon factors. 1. introduction 1.1. Triple product formula. Let F be a number field. Let ⇡i, i = 1, 2, 3 be three irreducible unitary cuspidal automorphic representations, such that the product of their central characters is trivial: (1.1) w⇡i = 1. Yi Let ⇧=⇡ ⇡ ⇡ . Then one can define the triple product L-function L(⇧, s) associated to them. 1 ⌦ 2 ⌦ 3 It was first studied in [6] by Garrett in classical languages, where explicit integral representation was given. In particular the triple product L-function has analytic continuation and functional equation. Later on Shapiro and Rallis in [19] reformulated his work in adelic languages. In this paper we shall study the following integral representing the special value of triple product L function (see Section 2.2 for more details): − ⇣2(2)L(⇧, 1/2) (1.2) f (g) f (g) f (g)dg 2 = F I0( f , f , f ), | 1 2 3 | ⇧, , v 1,v 2,v 3,v 8L( Ad 1) v ZAD (FZ) D (A) ⇤ \ ⇤ Y D D Here fi ⇡i for a specific quaternion algebra D, and ⇡i is the image of ⇡i under Jacquet-Langlands 2 0 correspondence.
    [Show full text]
  • Vectors, Matrices and Coordinate Transformations
    S. Widnall 16.07 Dynamics Fall 2009 Lecture notes based on J. Peraire Version 2.0 Lecture L3 - Vectors, Matrices and Coordinate Transformations By using vectors and defining appropriate operations between them, physical laws can often be written in a simple form. Since we will making extensive use of vectors in Dynamics, we will summarize some of their important properties. Vectors For our purposes we will think of a vector as a mathematical representation of a physical entity which has both magnitude and direction in a 3D space. Examples of physical vectors are forces, moments, and velocities. Geometrically, a vector can be represented as arrows. The length of the arrow represents its magnitude. Unless indicated otherwise, we shall assume that parallel translation does not change a vector, and we shall call the vectors satisfying this property, free vectors. Thus, two vectors are equal if and only if they are parallel, point in the same direction, and have equal length. Vectors are usually typed in boldface and scalar quantities appear in lightface italic type, e.g. the vector quantity A has magnitude, or modulus, A = |A|. In handwritten text, vectors are often expressed using the −→ arrow, or underbar notation, e.g. A , A. Vector Algebra Here, we introduce a few useful operations which are defined for free vectors. Multiplication by a scalar If we multiply a vector A by a scalar α, the result is a vector B = αA, which has magnitude B = |α|A. The vector B, is parallel to A and points in the same direction if α > 0.
    [Show full text]
  • Holley GM LS Race Single-Plane Intake Manifold Kits
    Holley GM LS Race Single-Plane Intake Manifold Kits 300-255 / 300-255BK LS1/2/6 Port-EFI - w/ Fuel Rails 4150 Flange 300-256 / 300-256BK LS1/2/6 Carbureted/TB EFI 4150 Flange 300-290 / 300-290BK LS3/L92 Port-EFI - w/ Fuel Rails 4150 Flange 300-291 / 300-291BK LS3/L92 Carbureted/TB EFI 4150 Flange 300-294 / 300-294BK LS1/2/6 Port-EFI - w/ Fuel Rails 4500 Flange 300-295 / 300-295BK LS1/2/6 Carbureted/TB EFI 4500 Flange IMPORTANT: Before installation, please read these instructions completely. APPLICATIONS: The Holley LS Race single-plane intake manifolds are designed for GM LS Gen III and IV engines, utilized in numerous performance applications, and are intended for carbureted, throttle body EFI, or direct-port EFI setups. The LS Race single-plane intake manifolds are designed for hi-performance/racing engine applications, 5.3 to 6.2+ liter displacement, and maximum engine speeds of 6000-7000 rpm, depending on the engine combination. This single-plane design provides optimal performance across the RPM spectrum while providing maximum performance up to 7000 rpm. These intake manifolds are for use on non-emissions controlled applications only, and will not accept stock components and hardware. Port EFI versions may not be compatible with all throttle body linkages. When installing the throttle body, make certain there is a minimum of ¼” clearance between all linkage and the fuel rail. SPLIT DESIGN: The Holley LS Race manifold incorporates a split feature, which allows disassembly of the intake for direct access to internal plenum and port surfaces, making custom porting and matching a snap.
    [Show full text]
  • Matrices and Tensors
    APPENDIX MATRICES AND TENSORS A.1. INTRODUCTION AND RATIONALE The purpose of this appendix is to present the notation and most of the mathematical tech- niques that are used in the body of the text. The audience is assumed to have been through sev- eral years of college-level mathematics, which included the differential and integral calculus, differential equations, functions of several variables, partial derivatives, and an introduction to linear algebra. Matrices are reviewed briefly, and determinants, vectors, and tensors of order two are described. The application of this linear algebra to material that appears in under- graduate engineering courses on mechanics is illustrated by discussions of concepts like the area and mass moments of inertia, Mohr’s circles, and the vector cross and triple scalar prod- ucts. The notation, as far as possible, will be a matrix notation that is easily entered into exist- ing symbolic computational programs like Maple, Mathematica, Matlab, and Mathcad. The desire to represent the components of three-dimensional fourth-order tensors that appear in anisotropic elasticity as the components of six-dimensional second-order tensors and thus rep- resent these components in matrices of tensor components in six dimensions leads to the non- traditional part of this appendix. This is also one of the nontraditional aspects in the text of the book, but a minor one. This is described in §A.11, along with the rationale for this approach. A.2. DEFINITION OF SQUARE, COLUMN, AND ROW MATRICES An r-by-c matrix, M, is a rectangular array of numbers consisting of r rows and c columns: ¯MM..
    [Show full text]
  • A Historical Introduction to Elementary Geometry
    i MATH 119 – Fall 2012: A HISTORICAL INTRODUCTION TO ELEMENTARY GEOMETRY Geometry is an word derived from ancient Greek meaning “earth measure” ( ge = earth or land ) + ( metria = measure ) . Euclid wrote the Elements of geometry between 330 and 320 B.C. It was a compilation of the major theorems on plane and solid geometry presented in an axiomatic style. Near the beginning of the first of the thirteen books of the Elements, Euclid enumerated five fundamental assumptions called postulates or axioms which he used to prove many related propositions or theorems on the geometry of two and three dimensions. POSTULATE 1. Any two points can be joined by a straight line. POSTULATE 2. Any straight line segment can be extended indefinitely in a straight line. POSTULATE 3. Given any straight line segment, a circle can be drawn having the segment as radius and one endpoint as center. POSTULATE 4. All right angles are congruent. POSTULATE 5. (Parallel postulate) If two lines intersect a third in such a way that the sum of the inner angles on one side is less than two right angles, then the two lines inevitably must intersect each other on that side if extended far enough. The circle described in postulate 3 is tacitly unique. Postulates 3 and 5 hold only for plane geometry; in three dimensions, postulate 3 defines a sphere. Postulate 5 leads to the same geometry as the following statement, known as Playfair's axiom, which also holds only in the plane: Through a point not on a given straight line, one and only one line can be drawn that never meets the given line.
    [Show full text]
  • Geometry Course Outline
    GEOMETRY COURSE OUTLINE Content Area Formative Assessment # of Lessons Days G0 INTRO AND CONSTRUCTION 12 G-CO Congruence 12, 13 G1 BASIC DEFINITIONS AND RIGID MOTION Representing and 20 G-CO Congruence 1, 2, 3, 4, 5, 6, 7, 8 Combining Transformations Analyzing Congruency Proofs G2 GEOMETRIC RELATIONSHIPS AND PROPERTIES Evaluating Statements 15 G-CO Congruence 9, 10, 11 About Length and Area G-C Circles 3 Inscribing and Circumscribing Right Triangles G3 SIMILARITY Geometry Problems: 20 G-SRT Similarity, Right Triangles, and Trigonometry 1, 2, 3, Circles and Triangles 4, 5 Proofs of the Pythagorean Theorem M1 GEOMETRIC MODELING 1 Solving Geometry 7 G-MG Modeling with Geometry 1, 2, 3 Problems: Floodlights G4 COORDINATE GEOMETRY Finding Equations of 15 G-GPE Expressing Geometric Properties with Equations 4, 5, Parallel and 6, 7 Perpendicular Lines G5 CIRCLES AND CONICS Equations of Circles 1 15 G-C Circles 1, 2, 5 Equations of Circles 2 G-GPE Expressing Geometric Properties with Equations 1, 2 Sectors of Circles G6 GEOMETRIC MEASUREMENTS AND DIMENSIONS Evaluating Statements 15 G-GMD 1, 3, 4 About Enlargements (2D & 3D) 2D Representations of 3D Objects G7 TRIONOMETRIC RATIOS Calculating Volumes of 15 G-SRT Similarity, Right Triangles, and Trigonometry 6, 7, 8 Compound Objects M2 GEOMETRIC MODELING 2 Modeling: Rolling Cups 10 G-MG Modeling with Geometry 1, 2, 3 TOTAL: 144 HIGH SCHOOL OVERVIEW Algebra 1 Geometry Algebra 2 A0 Introduction G0 Introduction and A0 Introduction Construction A1 Modeling With Functions G1 Basic Definitions and Rigid
    [Show full text]
  • Jordan Triple Systems with Completely Reducible Derivation Or Structure Algebras
    Pacific Journal of Mathematics JORDAN TRIPLE SYSTEMS WITH COMPLETELY REDUCIBLE DERIVATION OR STRUCTURE ALGEBRAS E. NEHER Vol. 113, No. 1 March 1984 PACIFIC JOURNAL OF MATHEMATICS Vol. 113, No. 1,1984 JORDAN TRIPLE SYSTEMS WITH COMPLETELY REDUCIBLE DERIVATION OR STRUCTURE ALGEBRAS ERHARD NEHER We prove that a finite-dimensional Jordan triple system over a field k of characteristic zero has a completely reducible structure algebra iff it is a direct sum of a trivial and a semisimple ideal. This theorem depends on a classification of Jordan triple systems with completely reducible derivation algebra in the case where k is algebraically closed. As another application we characterize real Jordan triple systems with compact automorphism group. The main topic of this paper is finite-dimensional Jordan triple systems over a field of characteristic zero which have a completely reducible derivation algebra. The history of the subject begins with [7] where G. Hochschild proved, among other results, that for an associative algebra & the deriva- tion algebra is semisimple iff & itself is semisimple. Later on R. D. Schafer considered in [18] the case of a Jordan algebra £. His result was that Der f is semisimple if and only if $ is semisimple with each simple component of dimension not equal to 3 over its center. This theorem was extended by K.-H. Helwig, who proved in [6]: Let f be a Jordan algebra which is finite-dimensional over a field of characteristic zero. Then the following are equivlent: (1) Der % is completely reducible and every derivation of % has trace zero, (2) £ is semisimple, (3) the bilinear form on Der f> given by (Dl9 D2) -> trace(Z>!Z>2) is non-degenerate and every derivation of % is inner.
    [Show full text]
  • Fully Homomorphic Encryption Over Exterior Product Spaces
    FULLY HOMOMORPHIC ENCRYPTION OVER EXTERIOR PRODUCT SPACES by DAVID WILLIAM HONORIO ARAUJO DA SILVA B.S.B.A., Universidade Potiguar (Brazil), 2012 A thesis submitted to the Graduate Faculty of the University of Colorado Colorado Springs in partial fulfillment of the requirements for the degree of Master of Science Department of Computer Science 2017 © Copyright by David William Honorio Araujo da Silva 2017 All Rights Reserved This thesis for the Master of Science degree by David William Honorio Araujo da Silva has been approved for the Department of Computer Science by C. Edward Chow, Chair Carlos Paz de Araujo Jonathan Ventura 9 December 2017 Date ii Honorio Araujo da Silva, David William (M.S., Computer Science) Fully Homomorphic Encryption Over Exterior Product Spaces Thesis directed by Professor C. Edward Chow ABSTRACT In this work I propose a new symmetric fully homomorphic encryption powered by Exterior Algebra and Product Spaces, more specifically by Geometric Algebra as a mathematical language for creating cryptographic solutions, which is organized and presented as the En- hanced Data-Centric Homomorphic Encryption - EDCHE, invented by Dr. Carlos Paz de Araujo, Professor and Associate Dean at the University of Colorado Colorado Springs, in the Electrical Engineering department. Given GA as mathematical language, EDCHE is the framework for developing solutions for cryptology, such as encryption primitives and sub-primitives. In 1978 Rivest et al introduced the idea of an encryption scheme able to provide security and the manipulation of encrypted data, without decrypting it. With such encryption scheme, it would be possible to process encrypted data in a meaningful way.
    [Show full text]
  • Math 102 -- Linear Algebra I -- Study Guide
    Math 102 Linear Algebra I Stefan Martynkiw These notes are adapted from lecture notes taught by Dr.Alan Thompson and from “Elementary Linear Algebra: 10th Edition” :Howard Anton. Picture above sourced from (http://i.imgur.com/RgmnA.gif) 1/52 Table of Contents Chapter 3 – Euclidean Vector Spaces.........................................................................................................7 3.1 – Vectors in 2-space, 3-space, and n-space......................................................................................7 Theorem 3.1.1 – Algebraic Vector Operations without components...........................................7 Theorem 3.1.2 .............................................................................................................................7 3.2 – Norm, Dot Product, and Distance................................................................................................7 Definition 1 – Norm of a Vector..................................................................................................7 Definition 2 – Distance in Rn......................................................................................................7 Dot Product.......................................................................................................................................8 Definition 3 – Dot Product...........................................................................................................8 Definition 4 – Dot Product, Component by component..............................................................8
    [Show full text]
  • The Second-Order Correction to the Energy and Momentum in Plane Symmetric Gravitational Waves Like Spacetimes
    S S symmetry Article The Second-Order Correction to the Energy and Momentum in Plane Symmetric Gravitational Waves Like Spacetimes Mutahir Ali *, Farhad Ali, Abdus Saboor, M. Saad Ghafar and Amir Sultan Khan Department of Mathematics, Kohat University of Science and Technology, Kohat 26000, Khyber Pakhtunkhwa, Pakistan; [email protected] (F.A.); [email protected] (A.S.); [email protected] (M.S.G.); [email protected] (A.S.K.) * Correspondence: [email protected] Received: 5 December 2018; Accepted: 22 January 2019; Published: 13 February 2019 Abstract: This research provides second-order approximate Noether symmetries of geodetic Lagrangian of time-conformal plane symmetric spacetime. A time-conformal factor is of the form ee f (t) which perturbs the plane symmetric static spacetime, where e is small a positive parameter that produces perturbation in the spacetime. By considering the perturbation up to second-order in e in plane symmetric spacetime, we find the second order approximate Noether symmetries for the corresponding Lagrangian. Using Noether theorem, the corresponding second order approximate conservation laws are investigated for plane symmetric gravitational waves like spacetimes. This technique tells about the energy content of the gravitational waves. Keywords: Einstein field equations; time conformal spacetime; approximate conservation of energy 1. Introduction Gravitational waves are ripples in the fabric of space-time produced by some of the most violent and energetic processes like colliding black holes or closely orbiting black holes and neutron stars (binary pulsars). These waves travel with the speed of light and depend on their sources [1–5]. The study of these waves provide us useful information about their sources (black holes and neutron stars).
    [Show full text]
  • MATH32052 Hyperbolic Geometry
    MATH32052 Hyperbolic Geometry Charles Walkden 12th January, 2019 MATH32052 Contents Contents 0 Preliminaries 3 1 Where we are going 6 2 Length and distance in hyperbolic geometry 13 3 Circles and lines, M¨obius transformations 18 4 M¨obius transformations and geodesics in H 23 5 More on the geodesics in H 26 6 The Poincar´edisc model 39 7 The Gauss-Bonnet Theorem 44 8 Hyperbolic triangles 52 9 Fixed points of M¨obius transformations 56 10 Classifying M¨obius transformations: conjugacy, trace, and applications to parabolic transformations 59 11 Classifying M¨obius transformations: hyperbolic and elliptic transforma- tions 62 12 Fuchsian groups 66 13 Fundamental domains 71 14 Dirichlet polygons: the construction 75 15 Dirichlet polygons: examples 79 16 Side-pairing transformations 84 17 Elliptic cycles 87 18 Generators and relations 92 19 Poincar´e’s Theorem: the case of no boundary vertices 97 20 Poincar´e’s Theorem: the case of boundary vertices 102 c The University of Manchester 1 MATH32052 Contents 21 The signature of a Fuchsian group 109 22 Existence of a Fuchsian group with a given signature 117 23 Where we could go next 123 24 All of the exercises 126 25 Solutions 138 c The University of Manchester 2 MATH32052 0. Preliminaries 0. Preliminaries 0.1 Contact details § The lecturer is Dr Charles Walkden, Room 2.241, Tel: 0161 27 55805, Email: [email protected]. My office hour is: WHEN?. If you want to see me at another time then please email me first to arrange a mutually convenient time. 0.2 Course structure § 0.2.1 MATH32052 § MATH32052 Hyperbolic Geoemtry is a 10 credit course.
    [Show full text]