Quaternions by Wasinee Siewrichol

Total Page:16

File Type:pdf, Size:1020Kb

Quaternions by Wasinee Siewrichol Quaternions Wasinee Siewsrichol Historical Context Complex numbers was a very popular subject in the early eighteenth hundreds. People knew how to multiply two numbers, but they did not know how to multiply three numbers. This question puzzled William Rowan Hamilton for a very long time. Hamilton wrote to his son: "Every morning in the early part of the above-cited month [Oct. 1843] on my coming down to breakfast, your brother William Edwin and yourself used to ask me, 'Well, Papa, can you multiply triplets?' Whereto I was always obliged to reply, with a sad shake of the head, 'No, I can only add and subtract them.'" Hamilton eventually found the solution, but in the fourth dimension. The concept of quaternions was first invented by the Irish mathematician William Rowan Hamilton on Monday, October 16th 1843 in Dublin, Ireland. Hamilton was on his way to the Royal Irish Academy with his wife and as he was passing over the Royal Canal on the Brougham Bridge. He made a dramatic realization that he immediately carved into the stone on the bridge. It is hard to tell, but on the bottom it writes i2 = j2 = k2 = ijk = −1 The first thing that Hamilton did was set the fourth dimension equal to zero. Then he spent the rest of his life trying to find a practical use for quaternions, but he did not find anything. By the early nineteenth century, Professor Josiah Willard Gibbs of Yale came up with the vector dot products and the cross product. Vectors are huge in physics for finding the velocity, acceleration, and force of an object. Then Albert Einstein found a use for the fourth dimension by working on problems in space and time, special relativity. Other uses for quaternions are for coordinates for rotations and orientations. SIGGRAPH is an international community of esearchers, artists, developers, filmmakers, scientists, and business professionals who share an interest in computer graphics and interactive techniques. In 1985, SIGGRAPH used quaternion curve methods to facilitate roation animation in computers. Quaternions were then used in physically based modeling, constraint systems, and user interfaces. There are four main types of number systems and they are the real, complex, quaternion, and cayley number systems where the complex has no order, the quaternion is not commutative, and cayley is not associative. Background Knowledge In order to understand quaternions, one must understand complex numbers. The Complex Number System introduces imaginary numbers. Imaginary numbers were invented for equations with no solutions. x2 + 1 = 0 x2 = −1 There is a problem here. If we square any number, positive or negative, the answer will always be positive. p p x2 = −1 = i p x = −1 = i Similarly, we cannot take the square root of a negative number. That is why imaginary numbers were invented. They are in the form of i2 = −1 The set of imaginary numbers is represented by the symbol I The set of complex numbers is represented by the symbol C. The complex numbers set includes real and imaginary numbers z = a + bi where a and b are real numbers. In other words, real numbers are complex numbers where b = 0 z = a + (0)i z = a Alternatively, imaginary numbers are complex numbers where a = 0 z = 0 + bi z = bi Adding and Subtracting Complex Numbers The imaginary number is treated like a variable by adding or subtracting all of the real numbers and imaginary numbers separately. Addition: (a1 + b1i) + (a2 + b2i) = (a1 + a2) + (b1 + b2)i where a1; b1; a2; b2 are real numbers Subtraction: (a1 + b1i) − (a2 + b2i) = (a1 − a2) + (b1 − b2)i 2 Multiplying Complex Numbers c(a + bi) = ca + cbi where a, b, c are real numbers Product of Complex Numbers z1 = (a1 + b1i) z2 = (a2 + b2i) z1z2 = (a1 + b1i)(a2 + b2i) 2 = a1a2 + a1b2i + b1a2i + b1b2i since i2 = −1 therefore = a1a2 + a1b2i + b1a2i − b1b2 Squaring Complex Numbers z = a + bi z2 = (a + bi)(a + bi) = a2 + abi + abi + b2i2 = a2 + 2abi − b2 Complex Conjugate A conjugate number is where we change the sign in the middle of the two terms. z = (a + bi) the conjugate of z is z∗ = (a − bi) zz∗ = (a + bi)(a − bi) = a2 − abi + abi − b2i2 = a2 + b2 3 Quotient of Two Complex Numbers z1 = a1 + b1i z2 = a2 + b2i z1=z2 = (a1 + b1i)=(a2 + b2i) In order to solve this equation, we multiply the numerator and denominator by the conjugate of the denomi- nator. The numerator is the numbers on top of the division sign and the denominator is the numbers at the bottom of the division sign. [(a1 + b1i)=(a2 + b2i)][(a2 − b2i)=(a2 − b2i)] 2 2 2 2 (a1a2 − a1b2i + a2b1i − b1b2i )=(a2 − b2i ) 2 2 (a1a2 − a1b2i + a2b1i + b1b2)=(a2 + b2) Powers of i i0 = 1 i1 = i i2 = −1 i3 = i2i = (−1)(i) = −i i4 = i2i2 = 1 And then we will see a pattern denotated by 1; i; −1; −i; 1; ::: Alternatively, i0 = 1 i−1 = −i i−2 = −1 i−3 = i i−4 = 1 By taking the powers of imaginary numbers, a pattern also emerges. Complex Plane We will show the complex numbers in a 2D grid by putting the real parts on the horizontal axis and the imaginary parts on the vertical axis. For example, we will take a random point p p = 2 + i 4 and we multiply p by i to get a new point q q = pi q = (2 + i)i = 2i + i2 = −1 + 2i multiply q by i to get a new point r r = qi = (−1 + 2i)i = −i + 2i2 = −2 − i multiply r by i to get a new point s s = ri = (−2 − i)i = −2i − i2 = 1 − 2i multiply s by i to get a new point t t = si = (1 − 2i)i = i − 2i2 = 2 + i By plotting points p, q, r, s, t on the 2D complex plane, and connecting the dots, a circle will be made. Quaternions Quaternions can be defined in several different ways. The first way is by defining the general form. The general form of quaternions can be expressed as: q = s + xi + yj + zk in which s, x, y, z are real numbers and i, j, k are imaginary numbers. The concempt of i, j, k is very simialr to the cross poduct rules. ixj = k jxk = i kxi = j jxi = −k kxj = −i ixk = −j 5 where x is the multiplication sign. Commutative property states that numbers can be added or multiplied in any order. This shows that quater- nions multiplication is not communitative because ixj does not equal jxi In conclusion, quaternions is defined as two things. Quaternions have an x, y, and z component which represents the axis about which a rotation will occur. It also has a w component which represents the amount of rotation which will occur about this axis. With these four numbers, a matrix can be built. Quaternions is technically four numbers but three of them are imaginary. Quaternions as an Ordered Pair q = [s; v] where s is an element of the first dimension, the real dimesnion, and v is an element of the third dimension, the imaginary dimension. v can be split into individual parts in which v = xi + yj + zk which makes q = [s; xi + yj + zk] where s, x, y, z are elements of the first dimension Adding and Subtracting Quaternions qa = [sa; a] qb = [sb; b] qa + qb = [sa + sb; a + b] This method is very similar to the addition of vectors in calculus III where w = [a; b; c] v = [d; e; f] w + v = [a + d; b + e; c + f] The x components cannot be added or subtracted from the y or z components. Similarly, the y components cannot be added or subtracted from the x or z components. Quaternion Norm The square root of the product of a quaternion with its conjugate is called its norm and is denoted |q| (Hamilton called this quantity the tensor of q). 6 jqj = p(x2 + y2 + z2 + w2) The norm is always a postive number. The quaternion norm can also be refered to as the magnitude. Quaternion Proof Proposition: Prove the four square identity jfgj = jfjjgj where f is a quaternion and g is a different quaternion. Proof: Let f = a + bi + cj + dk g = x + yi + zj + wk) where a, b, c, d are real numbers and i, j, k are imaginary numbers. By defintion, the norm of f is p jfj = a2 + b2 + c2 + d2 p jgj = x2 + y2 + z2 + w2 So if you do the cross product of f and g, there will be four total group of numbers. (a + bi + cj + dk)(x + yi + zj + wk) = (n0) + i(n1) + j(n2) + k(n3) where n0 represents a group of real numbers and n1; n2; n3 represent groups of real and imaginary numbers. Part 1, For the first group of numbers, in order to multiply them to get real numbers, one must remember the quaternion identity which is i2 = j2 = k2 = −1 2 2 2 (n0) = (ax + byi + czj + dwk ) = (ax − by − cz − dw) Part 2, The second group of numbers, we will use something similar to the cross product to get i. We must remember the rules of cross products in which ixj = k jxk = i kxi = j jxi = −k kxj = −i ixk = −j 7 Therefore, i(n1) = (ayi + bxi + cjxwk + dkxzj) = (ayi + bxi + cwi − dwi) = i(ay + bx + cw − dz) where x is the cross product and x is different from x. Part 3, For the third group of numbers, we will try to use the cross product to get j.
Recommended publications
  • The Orthogonal Planes Split of Quaternions and Its Relation to Quaternion Geometry of Rotations
    Home Search Collections Journals About Contact us My IOPscience The orthogonal planes split of quaternions and its relation to quaternion geometry of rotations This content has been downloaded from IOPscience. Please scroll down to see the full text. 2015 J. Phys.: Conf. Ser. 597 012042 (http://iopscience.iop.org/1742-6596/597/1/012042) View the table of contents for this issue, or go to the journal homepage for more Download details: IP Address: 131.169.4.70 This content was downloaded on 17/02/2016 at 22:46 Please note that terms and conditions apply. 30th International Colloquium on Group Theoretical Methods in Physics (Group30) IOP Publishing Journal of Physics: Conference Series 597 (2015) 012042 doi:10.1088/1742-6596/597/1/012042 The orthogonal planes split of quaternions and its relation to quaternion geometry of rotations1 Eckhard Hitzer Osawa 3-10-2, Mitaka 181-8585, International Christian University, Japan E-mail: [email protected] Abstract. Recently the general orthogonal planes split with respect to any two pure unit 2 2 quaternions f; g 2 H, f = g = −1, including the case f = g, has proved extremely useful for the construction and geometric interpretation of general classes of double-kernel quaternion Fourier transformations (QFT) [7]. Applications include color image processing, where the orthogonal planes split with f = g = the grayline, naturally splits a pure quaternionic three-dimensional color signal into luminance and chrominance components. Yet it is found independently in the quaternion geometry of rotations [3], that the pure quaternion units f; g and the analysis planes, which they define, play a key role in the geometry of rotations, and the geometrical interpretation of integrals related to the spherical Radon transform of probability density functions of unit quaternions, as relevant for texture analysis in crystallography.
    [Show full text]
  • Euler's Square Root Laws for Negative Numbers
    Ursinus College Digital Commons @ Ursinus College Transforming Instruction in Undergraduate Complex Numbers Mathematics via Primary Historical Sources (TRIUMPHS) Winter 2020 Euler's Square Root Laws for Negative Numbers Dave Ruch Follow this and additional works at: https://digitalcommons.ursinus.edu/triumphs_complex Part of the Curriculum and Instruction Commons, Educational Methods Commons, Higher Education Commons, and the Science and Mathematics Education Commons Click here to let us know how access to this document benefits ou.y Euler’sSquare Root Laws for Negative Numbers David Ruch December 17, 2019 1 Introduction We learn in elementary algebra that the square root product law pa pb = pab (1) · is valid for any positive real numbers a, b. For example, p2 p3 = p6. An important question · for the study of complex variables is this: will this product law be valid when a and b are complex numbers? The great Leonard Euler discussed some aspects of this question in his 1770 book Elements of Algebra, which was written as a textbook [Euler, 1770]. However, some of his statements drew criticism [Martinez, 2007], as we shall see in the next section. 2 Euler’sIntroduction to Imaginary Numbers In the following passage with excerpts from Sections 139—148of Chapter XIII, entitled Of Impossible or Imaginary Quantities, Euler meant the quantity a to be a positive number. 1111111111111111111111111111111111111111 The squares of numbers, negative as well as positive, are always positive. ...To extract the root of a negative number, a great diffi culty arises; since there is no assignable number, the square of which would be a negative quantity. Suppose, for example, that we wished to extract the root of 4; we here require such as number as, when multiplied by itself, would produce 4; now, this number is neither +2 nor 2, because the square both of 2 and of 2 is +4, and not 4.
    [Show full text]
  • Is Liscussed and a Class of Spaces in Yhich the Potian of Dittance Is Defin Time Sd-Called Metric Spaces, Is Introduced
    DOCUMENT RESEW Sit 030 465 - ED in ) AUTH3R Shreider, Yu A. TITLE What Is Distance? Populatt Lectu'res in Mathematios. INSTITUTI3N :".hicago Univ., Ill: Dept. of Mathematics. SPONS A3ENCY National Science Foundation, Washington, D.C. P.11B DATE 74 GRANT NSF-G-834 7 (M Al NOTE Blip.; For.relateE documents,see SE- 030 460-464: Not availabie in hard copy due :to copyright restrActi. cals. Translated and adapted from the° Russian edition. AVAILABLE FROM!he gniversity ofwChicago Press, Chicago, IL 60637 (Order No. 754987; $4.501. EDRS- PRICL: MF0-1,Plus-Postage. PC Not Available from ELMS. DESCRIPTORS College Mathemitties; Geometric Concepts; ,Higker Education; Lecture Method; Mathematics; Mathematics Curriculum; *Mathematics Education; *tlatheatatic ,Instruction; *Measurment; Secondary Education; *Secondary echool Mathematics IDENKFIERp *Distance (Mathematics); *Metric Spaces ABSTRACT Rresened is at elaboration of a course given at Moscow University for-pupils in nifith and tenthgrades/eTh development through ibstraction of the'general definiton of,distance is liscussed and a class of spaces in yhich the potian of dittance is defin time sd-called metric spaces, is introduced. The gener.al ..oon,ce V of diztance is related to a large number of mathematical phenomena. (Author/MO 14. R producttions supplied by EDRS are the best that can be made from the original document. ************************t**************:********.********************** , . THIStiocuMENT HAS BEEN REgoltb., OOCEO EXACTve AVECCEIVEO fROM- THE 'PERSON OR.OROANIZATIONC41OIN- AIR** IT PONTS Of Vie*41010114IONS4- ! STATED 00 NOT NECESSAACT REPRE SEATOFFICIAL NATIONAL INSTITUTIEOF IMOUCATIOH P9SITION OR POLKY ;.- r ilk 4 #. .f.) ;4',C; . fr; AL"' ' . , ... , , AV Popular Lectures in Matheniatics Survey of Recent East European Mathernatical- Literature A project conducted by Izaak Wirszup, .
    [Show full text]
  • How to Show That Various Numbers Either Can Or Cannot Be Constructed Using Only a Straightedge and Compass
    How to show that various numbers either can or cannot be constructed using only a straightedge and compass Nick Janetos June 3, 2010 1 Introduction It has been found that a circular area is to the square on a line equal to the quadrant of the circumference, as the area of an equilateral rectangle is to the square on one side... -Indiana House Bill No. 246, 1897 Three problems of classical Greek geometry are to do the following using only a compass and a straightedge: 1. To "square the circle": Given a circle, to construct a square of the same area, 2. To "trisect an angle": Given an angle, to construct another angle 1/3 of the original angle, 3. To "double the cube": Given a cube, to construct a cube with twice the area. Unfortunately, it is not possible to complete any of these tasks until additional tools (such as a marked ruler) are provided. In section 2 we will examine the process of constructing numbers using a compass and straightedge. We will then express constructions in algebraic terms. In section 3 we will derive several results about transcendental numbers. There are two goals: One, to show that the numbers e and π are transcendental, and two, to show that the three classical geometry problems are unsolvable. The two goals, of course, will turn out to be related. 2 Constructions in the plane The discussion in this section comes from [8], with some parts expanded and others removed. The classical Greeks were clear on what constitutes a construction. Given some set of points, new points can be defined at the intersection of lines with other lines, or lines with circles, or circles with circles.
    [Show full text]
  • From Counting to Quaternions -- the Agonies and Ecstasies of the Student Repeat Those of D'alembert and Hamilton
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Keck Graduate Institute Journal of Humanistic Mathematics Volume 1 | Issue 1 January 2011 From Counting to Quaternions -- The Agonies and Ecstasies of the Student Repeat Those of D'Alembert and Hamilton Reuben Hersh University of New Mexico Follow this and additional works at: https://scholarship.claremont.edu/jhm Recommended Citation Hersh, R. "From Counting to Quaternions -- The Agonies and Ecstasies of the Student Repeat Those of D'Alembert and Hamilton," Journal of Humanistic Mathematics, Volume 1 Issue 1 (January 2011), pages 65-93. DOI: 10.5642/jhummath.201101.06 . Available at: https://scholarship.claremont.edu/jhm/vol1/ iss1/6 ©2011 by the authors. This work is licensed under a Creative Commons License. JHM is an open access bi-annual journal sponsored by the Claremont Center for the Mathematical Sciences and published by the Claremont Colleges Library | ISSN 2159-8118 | http://scholarship.claremont.edu/jhm/ The editorial staff of JHM works hard to make sure the scholarship disseminated in JHM is accurate and upholds professional ethical guidelines. However the views and opinions expressed in each published manuscript belong exclusively to the individual contributor(s). The publisher and the editors do not endorse or accept responsibility for them. See https://scholarship.claremont.edu/jhm/policies.html for more information. From Counting to Quaternions { The Agonies and Ecstasies of the Student Repeat Those of D'Alembert and Hamilton Reuben Hersh Department of Mathematics and Statistics, The University of New Mexico [email protected] Synopsis Young learners of mathematics share a common experience with the greatest creators of mathematics: \hitting a wall," meaning, first frustration, then strug- gle, and finally, enlightenment and elation.
    [Show full text]
  • The Evolution of Numbers
    The Evolution of Numbers Counting Numbers Counting Numbers: {1, 2, 3, …} We use numbers to count: 1, 2, 3, 4, etc You can have "3 friends" A field can have "6 cows" Whole Numbers Whole numbers are the counting numbers plus zero. Whole Numbers: {0, 1, 2, 3, …} Negative Numbers We can count forward: 1, 2, 3, 4, ...... but what if we count backward: 3, 2, 1, 0, ... what happens next? The answer is: negative numbers: {…, -3, -2, -1} A negative number is any number less than zero. Integers If we include the negative numbers with the whole numbers, we have a new set of numbers that are called integers: {…, -3, -2, -1, 0, 1, 2, 3, …} The Integers include zero, the counting numbers, and the negative counting numbers, to make a list of numbers that stretch in either direction indefinitely. Rational Numbers A rational number is a number that can be written as a simple fraction (i.e. as a ratio). 2.5 is rational, because it can be written as the ratio 5/2 7 is rational, because it can be written as the ratio 7/1 0.333... (3 repeating) is also rational, because it can be written as the ratio 1/3 More formally we say: A rational number is a number that can be written in the form p/q where p and q are integers and q is not equal to zero. Example: If p is 3 and q is 2, then: p/q = 3/2 = 1.5 is a rational number Rational Numbers include: all integers all fractions Irrational Numbers An irrational number is a number that cannot be written as a simple fraction.
    [Show full text]
  • Operations with Complex Numbers Adding & Subtracting: Combine Like Terms (풂 + 풃풊) + (풄 + 풅풊) = (풂 + 풄) + (풃 + 풅)풊 Examples: 1
    Name: __________________________________________________________ Date: _________________________ Period: _________ Chapter 2: Polynomial and Rational Functions Topic 1: Complex Numbers What is an imaginary number? What is a complex number? The imaginary unit is defined as 풊 = √−ퟏ A complex number is defined as the set of all numbers in the form of 푎 + 푏푖, where 푎 is the real component and 푏 is the coefficient of the imaginary component. An imaginary number is when the real component (푎) is zero. Checkpoint: Since 풊 = √−ퟏ Then 풊ퟐ = Operations with Complex Numbers Adding & Subtracting: Combine like terms (풂 + 풃풊) + (풄 + 풅풊) = (풂 + 풄) + (풃 + 풅)풊 Examples: 1. (5 − 11푖) + (7 + 4푖) 2. (−5 + 7푖) − (−11 − 6푖) 3. (5 − 2푖) + (3 + 3푖) 4. (2 + 6푖) − (12 − 4푖) Multiplying: Just like polynomials, use the distributive property. Then, combine like terms and simplify powers of 푖. Remember! Multiplication does not require like terms. Every term gets distributed to every term. Examples: 1. 4푖(3 − 5푖) 2. (7 − 3푖)(−2 − 5푖) 3. 7푖(2 − 9푖) 4. (5 + 4푖)(6 − 7푖) 5. (3 + 5푖)(3 − 5푖) A note about conjugates: Recall that when multiplying conjugates, the middle terms will cancel out. With complex numbers, this becomes even simpler: (풂 + 풃풊)(풂 − 풃풊) = 풂ퟐ + 풃ퟐ Try again with the shortcut: (3 + 5푖)(3 − 5푖) Dividing: Just like polynomials and rational expressions, the denominator must be a rational number. Since complex numbers include imaginary components, these are not rational numbers. To remove a complex number from the denominator, we multiply numerator and denominator by the conjugate of the Remember! You can simplify first IF factors can be canceled.
    [Show full text]
  • Theory of Trigintaduonion Emanation and Origins of Α and Π
    Theory of Trigintaduonion Emanation and Origins of and Stephen Winters-Hilt Meta Logos Systems Aurora, Colorado Abstract In this paper a specific form of maximal information propagation is explored, from which the origins of , , and fractal reality are revealed. Introduction The new unification approach described here gives a precise derivation for the mysterious physics constant (the fine-structure constant) from the mathematical physics formalism providing maximal information propagation, with being the maximal perturbation amount. Furthermore, the new unification provides that the structure of the space of initial ‘propagation’ (with initial propagation being referred to as ‘emanation’) has a precise derivation, with a unit-norm perturbative limit that leads to an iterative-map-like computed (a limit that is precisely related to the Feigenbaum bifurcation constant and thus fractal). The computed can also, by a maximal information propagation argument, provide a derivation for the mathematical constant . The ideal constructs of planar geometry, and related such via complex analysis, give methods for calculation of to incredibly high precision (trillions of digits), thereby providing an indirect derivation of to similar precision. Propagation in 10 dimensions (chiral, fermionic) and 26 dimensions (bosonic) is indicated [1-3], in agreement with string theory. Furthermore a preliminary result showing a relation between the Feigenbaum bifurcation constant and , consistent with the hypercomplex algebras indicated in the Emanator Theory, suggest an individual object trajectory with 36=10+26 degrees of freedom (indicative of heterotic strings). The overall (any/all chirality) propagation degrees of freedom, 78, are also in agreement with the number of generators in string gauge symmetries [4].
    [Show full text]
  • Truly Hypercomplex Numbers
    TRULY HYPERCOMPLEX NUMBERS: UNIFICATION OF NUMBERS AND VECTORS Redouane BOUHENNACHE (pronounce Redwan Boohennash) Independent Exploration Geophysical Engineer / Geophysicist 14, rue du 1er Novembre, Beni-Guecha Centre, 43019 Wilaya de Mila, Algeria E-mail: [email protected] First written: 21 July 2014 Revised: 17 May 2015 Abstract Since the beginning of the quest of hypercomplex numbers in the late eighteenth century, many hypercomplex number systems have been proposed but none of them succeeded in extending the concept of complex numbers to higher dimensions. This paper provides a definitive solution to this problem by defining the truly hypercomplex numbers of dimension N ≥ 3. The secret lies in the definition of the multiplicative law and its properties. This law is based on spherical and hyperspherical coordinates. These numbers which I call spherical and hyperspherical hypercomplex numbers define Abelian groups over addition and multiplication. Nevertheless, the multiplicative law generally does not distribute over addition, thus the set of these numbers equipped with addition and multiplication does not form a mathematical field. However, such numbers are expected to have a tremendous utility in mathematics and in science in general. Keywords Hypercomplex numbers; Spherical; Hyperspherical; Unification of numbers and vectors Note This paper (or say preprint or e-print) has been submitted, under the title “Spherical and Hyperspherical Hypercomplex Numbers: Merging Numbers and Vectors into Just One Mathematical Entity”, to the following journals: Bulletin of Mathematical Sciences on 08 August 2014, Hypercomplex Numbers in Geometry and Physics (HNGP) on 13 August 2014 and has been accepted for publication on 29 April 2015 in issue No.
    [Show full text]
  • Generalized Quaternion and Rotation in 3-Space E M. Jafari, Y. Yayli
    TWMS J. Pure Appl. Math. V.6, N.2, 2015, pp.224-232 3 GENERALIZED QUATERNIONS AND ROTATION IN 3-SPACE E®¯ MEHDI JAFARI1, YUSUF YAYLI2 Abstract. The paper explains how a unit generalized quaternion is used to represent a rotation 3 of a vector in 3-dimensional E®¯ space. We review of some algebraic properties of generalized quaternions and operations between them and then show their relation with the rotation matrix. Keywords: generalized quaternion, quasi-orthogonal matrix, rotation. AMS Subject Classi¯cation: 15A33. 1. Introduction The quaternions algebra was invented by W.R. Hamilton as an extension to the complex numbers. He was able to ¯nd connections between this new algebra and spatial rotations. The unit quaternions form a group that is isomorphic to the group SU(2) and is a double cover of SO(3), the group of 3-dimensional rotations. Under these isomorphisms the quaternion multiplication operation corresponds to the composition operation of rotations [18]. Kula and Yayl³ [13] showed that unit split quaternions in H0 determined a rotation in semi-Euclidean 4 space E2 : In [15], is demonstrated how timelike split quaternions are used to perform rotations 3 in the Minkowski 3-space E1 . Rotations in a complex 3-dimensional space are considered in [20] and applied to the treatment of the Lorentz transformation in special relativity. A brief introduction of the generalized quaternions is provided in [16]. Also, this subject have investigated in algebra [19]. Recently, we studied the generalized quaternions, and gave some of their algebraic properties [7]. It is shown that the set of all unit generalized quaternions with the group operation of quaternion multiplication is a Lie group of 3-dimension.
    [Show full text]
  • Operations with Integers Sponsored by the Center for Teaching and Learning at UIS
    Operations with Integers Sponsored by The Center for Teaching and Learning at UIS What are integers? Integers are zero and all the positive and negative whole numbers. When you first begin to work with integers, imagine a tremendously large line that extends infinitely left and right. Now, directly in front of you is a spot on that line we will call the center and label it zero. To the left are all the negative numbers and to the right all the positive. -10 -9 -8 -7 -6 -5 -4 -3 -2 -1 0 1 2 3 4 5 6 7 8 9 10 Adding Integers -30 01 Integers with the Same Sign `0 Adding integers that have the same sign is pretty straightforward. Add the two numbers together and maintain the sign. Example: Both numbers are positive so we add the numbers together and number remains positive. Example: Both addends are negative, so we add them together and maintain the negative sign. Integers with Different Signs When adding integers with different signs, ignore the signs at first and subtract the smaller number from the larger. The final sum will maintain the sign of the larger addend. Example: Since we are adding two numbers with different signs, ignore the signs and we are left with 3 and 8. The number 3 is smaller than 8 so we subtract 3 from 8 which give us 5. Of the two addends, 8 was the larger and was positive, so the final sum will be positive. Thus, our final sum is 5. Example: In this example, when we ignore the signs, the number 50 is greater than 18.
    [Show full text]
  • Chapter I, the Real and Complex Number Systems
    CHAPTER I THE REAL AND COMPLEX NUMBERS DEFINITION OF THE NUMBERS 1, i; AND p2 In order to make precise sense out of the concepts we study in mathematical analysis, we must first come to terms with what the \real numbers" are. Everything in mathematical analysis is based on these numbers, and their very definition and existence is quite deep. We will, in fact, not attempt to demonstrate (prove) the existence of the real numbers in the body of this text, but will content ourselves with a careful delineation of their properties, referring the interested reader to an appendix for the existence and uniqueness proofs. Although people may always have had an intuitive idea of what these real num- bers were, it was not until the nineteenth century that mathematically precise definitions were given. The history of how mathematicians came to realize the necessity for such precision in their definitions is fascinating from a philosophical point of view as much as from a mathematical one. However, we will not pursue the philosophical aspects of the subject in this book, but will be content to con- centrate our attention just on the mathematical facts. These precise definitions are quite complicated, but the powerful possibilities within mathematical analysis rely heavily on this precision, so we must pursue them. Toward our primary goals, we will in this chapter give definitions of the symbols (numbers) 1; i; and p2: − The main points of this chapter are the following: (1) The notions of least upper bound (supremum) and greatest lower bound (infimum) of a set of numbers, (2) The definition of the real numbers R; (3) the formula for the sum of a geometric progression (Theorem 1.9), (4) the Binomial Theorem (Theorem 1.10), and (5) the triangle inequality for complex numbers (Theorem 1.15).
    [Show full text]