The Matrix Inverse, and the Determinant

Total Page:16

File Type:pdf, Size:1020Kb

The Matrix Inverse, and the Determinant We now use the interpretation of Gauss reduction given above to find the inverse of a matrix (if it has one). Theorem 2.70 (Row operations and the matrix inverse). If row operations are applied to a n×n matrix A to bring it to reduced row echelon form R, then either (i) R = In (the identity matrix) and A is invertible, or (ii) R has at least one row of zeros and A is not invertible. Proof. Since R is a square matrix, either: (i) R has a leading 1 in every column of the matrix or; (ii) the leading 1s skip (at least) one column so there is (at least) one row of zeros at the end. That is, either 21 0 ∗ 0 ::: 03 21 0 ::: 0 03 0 1 ∗ 0 ::: 0 0 1 ::: 0 0 6 7 6 7 60 0 0 1 ::: 07 6. .7 6 7 (i) R = 6. .. .7 = I or (ii) R = 6. .7 : 6 7 6. .. .7 60 0 ::: 1 07 6 7 4 5 60 0 0 0 ::: 17 0 0 ::: 0 1 4 5 0 0 0 0 ::: 0 Now suppose E1;E2;:::;Ek are the elementary matrices such that R = Ek :::E2E1A and consider the two cases. (i) Here R = I, so I = EA, where E = Ek :::E2E1 is the product of the elementary matrices used to reduce A to the reduced row echelon form R. We find E is the inverse of A. Certainly EA = I, so E works on the left of A. But also E is invertible (as it is a product of elementary matrices which are invertible), and hence −1 −1 −1 −1 In = E E = E IE = E (EA)E = (E E)AE = IAE = AE; so E also works on the right. Thus −1 (2.11) A = E = Ek :::E2E1: (ii) Here R has a row of zeros, so any product RC has a row of zeros for any matrix C. Therefore RC 6= I for any matrix C. Thus R is not invertible, so neither is A (if A were invertible, then R = En :::E2E1A would be invertible too, since it would be a product of invertible matrices, which is a contradiction). The proof of Theorem 2.70 gives an algorithm for finding the inverse of a matrix (when it has one). In fact the argument shows that if A is invertible then it is row equivalent to the identity matrix I. Further if E1;E2;:::;Ek are the elementary matrices such that R = I = Ek :::E2E1A; then the inverse is given by the formula (2.11)! So to compute the inverse A−1 of an invertible matrix A, we simply apply row operations to A to reduce A to the identity matrix I and keep a record of the elementary matrices E1;E2;:::;Ek involved. We then multiply these together in reverse order to find −1 A = Ek :::E2E1. 21 1 33 Example 2.71. Given A = 40 1 15 , find A−1. 0 0 1 56 Solution: 4.1. The supermatrix method. A compact way of presenting the working above is to use the supermatrix method. Write down the n × n matrix A and the identity matrix In in one large supermatrix A∗ = [AjI] of n rows and 2n columns. Now apply the row operations to A∗ that reduce A to reduced row echelon form R. As A is reduced to R = I, the same operations applied to I give A−1. If A is not row equivalent to I then A is not invertible. That is, if row operations applied to the supermatrix A∗ = [AjI] produce [RjC], where R is in reduced row echelon form. If R = I, then C = A−1. On the other hand, if R has a row of zeros then A is not invertible. Example 2.72. Use the supermatrix method to find A−1, where A is the matrix of Example 2.71. Solution: The algorithm given in the supermatrix method is quite mechanical and produces the inverse in a rea- sonably straightforward way. The arithmetic may become a bit tedious for matrices bigger than 3 × 3, but there are computer packages available than do these sorts of matrix calculations. 21 1 −13 Example 2.73. Given A = 43 1 −25, use the supermatrix method to find A−1. 1 −2 1 57 Solution: 5. Determinants 5.1. The 2 × 2 case. a b Recall that, if A = is a 2 × 2 matrix, then by Lemma 2.53 the matrix A is invertible if and c d only if ab − cd 6= 0. In particular, the value of ad − bc determines whether or not A is invertible. This observation leads to the following definition. a b Definition 2.74 (Determinant). The determinant of a 2 × 2 matrix A = is the number ad − bc. c d We denote the determinant of A by det(A) or jAj. In the latter case we use vertical lines instead of brackets to border the array, so we write a b det(A) = jAj = = ad − bc: c d 2 −5 1 0 3 −2 Example 2.75. Find the determinants of A = , I = , and B = . 3 7 0 1 −3 2 Solution: In the next two results we list some properties of determinants, which we justify when A and B are 2 × 2 matrices and I = I2, the 2 × 2 identity matrix. However, later on we will define the determinant of a general n × n matrix, and these properties remain true (though we shall not prove them) when A and B are n × n matrices and I = In is the n × n identity matrix. Lemma 2.76 (Properties of determinants). If A and B are square matrices (of the same size) and I is the identity matrix then: (i) det(I) = 1. (ii) det(AT ) = det(A). 58 (iii) det(AB) = det(A) det(B). −1 1 (iv) If det(A) 6= 0, then A is invertible and det(A ) = det(A) . Conversely, if A is invertible, then det(A) 6= 0. Proof. As mention above, we only consider the 2 × 2 case. The first property (i) is contained in Example 2.75. For the remaining properties, we let a b e f ae + bg af + bh A = and B = ; and so AB = : c d g h ce + dg cf + dh We now state how the determinant of a matrix is affected by the elementary row operations of the last section. Again we only give the proof in the 2×2 case, but it also holds for general square n×n matrices. Lemma 2.77 (Row operations on determinants). If the square matrix B is obtained from A by: • multiplying a row of A by a scalar λ, then det(B) = λ det(A); • adding a multiple of one row of A to another, then det(B) = det(A); • interchanging two rows of A, then det(B) = − det(A): Further, each of these remains true if we replace row by column. Proof. We leave (i), (ii) and (iii) as exercises, and just consider the last remark on columns. Remember the rows of AT are the columns of A, so any column operation on A can be achieved by first taking the transpose of A, then performing the corresponding row operation on AT , and then taking the transpose of the resulting matrix. Since by Lemma 2.76 a matrix and its transpose have the same determinant, the result follows. 1 2 Example 2.78. Compare det A and det B, for A = and B which is obtained from A by: −2 3 (i) multiplying the first row of A by 2; (ii) adding twice the first row of A to the second; (iii) interchanging the two rows of A: 59 Solution: Beware: If B = 2A, and A is a 2 × 2 matrix, then both rows of A get multiplied by 2, so det(B) = 2 × 2 det(A) = 22 det(A). 5.2. The 3 × 3 case. Before defining the determinant of a 3 × 3 matrix A, we define some 2 × 2 subdeterminants of A called cofactors. Definition 2.79. Let A = [aij] be a 3 × 3 matrix. The cofactor of the entry aij of A, denoted Aij, is given by determinant of the 2 × 2 matrix obtained from A by deleting row i and A = (−1)i+j × ij column j of A. 21 2 33 Example 2.80. If A = 44 5 65 find A11;A12;A13 and A21. 7 8 0 Solution: Remark: Since (−1)i+j is 1 if i + j is even and −1 if i + j is odd, the signs of the cofactors from a 2+ − +3 "chessboard" type pattern. For instance in the 3 × 3 case, the ± signs take the form 4− + −5. + − + 60 Definition 2.81. The determinant of the 3 × 3 matrix A = [aij] is given by det(A) = a11A11 + a12A12 + a13A13: That is, det(A) is the sum of the products of each entry in the first row of A times its corresponding cofactor. For this reason we say we have found det(A) by expanding about its first row. In terms of the elements of A a11 a12 a13 a22 a23 a21 a23 a21 a22 det(A) = a21 a22 a23 = a11 − a12 + a13 : a32 a33 a31 a33 a31 a32 a31 a32 a33 Example 2.82. Find det(A), where A is the matrix of Example 2.80. Solution: 5.3. Expansion of det(A) by any row or column. We have defined the determinant of a 3 × 3 matrix by expanding along the first row.
Recommended publications
  • On Supermatrix Operator Semigroups 1. Introduction
    Quasigroups and Related Systems 7 (2000), 71 − 88 On supermatrix operator semigroups Steven Duplij Abstract One-parameter semigroups of antitriangle idempotent su- permatrices and corresponding superoperator semigroups are introduced and investigated. It is shown that t-linear idempo- tent superoperators and exponential superoperators are mutu- ally dual in some sense, and the rst give additional to expo- nential dierent solution to the initial Cauchy problem. The corresponding functional equation and analog of resolvent are found for them. Dierential and functional equations for idem- potent (super)operators are derived for their general t power- type dependence. 1. Introduction Operator semigroups [1] play an important role in mathematical physics [2, 3, 4] viewed as a general theory of evolution systems [5, 6, 7]. Its development covers many new elds [8, 9, 10, 11], but one of vital for modern theoretical physics directions supersymmetry and related mathematical structures was not considered before in application to operator semigroup theory. The main dierence between previous considerations is the fact that among building blocks (e.g. elements of corresponding matrices) there exist noninvertible objects (divisors 2000 Mathematics Subject Classication: 25A50, 81Q60, 81T60 Keywords: Cauchy problem, idempotence, semigroup, supermatrix, superspace 72 S. Duplij of zero and nilpotents) which by themselves can form another semi- group. Therefore, we have to take that into account and investigate it properly, which can be called a semigroup × semigroup method. Here we study continuous supermatrix representations of idempo- tent operator semigroups rstly introduced in [12, 13] for bands. Usu- ally matrix semigroups are dened over a eld K [14] (on some non- supersymmetric generalizations of K-representations see [15, 16]).
    [Show full text]
  • Howe Pairs, Supersymmetry, and Ratios of Random Characteristic
    HOWE PAIRS, SUPERSYMMETRY, AND RATIOS OF RANDOM CHARACTERISTIC POLYNOMIALS FOR THE UNITARY GROUPS UN by J.B. Conrey, D.W. Farmer & M.R. Zirnbauer Abstract. — For the classical compact Lie groups K UN the autocorrelation functions of ratios of characteristic polynomials (z,w) Det(z≡ k)/Det(w k) are studied with k K as random variable. Basic to our treatment7→ is a property− shared− by the spinor repre- sentation∈ of the spin group with the Shale-Weil representation of the metaplectic group: in both cases the character is the analytic square root of a determinant or the reciprocal thereof. By combining this fact with Howe’s theory of supersymmetric dual pairs (g,K), we express the K-Haar average product of p ratios of characteristic polynomials and q conjugate ratios as a character χ which is associated with an irreducible representation of χ the Lie superalgebra g = gln n for n = p+q. The primitive character is shown to extend | to an analytic radial section of a real supermanifold related to gln n , and is computed by | invoking Berezin’s description of the radial parts of Laplace-Casimir operators for gln n . The final result for χ looks like a natural transcription of the Weyl character formula| to the context of highest-weight representations of Lie supergroups. While several other works have recently reproduced our results in the stable range N max(p,q), the present approach covers the full range of matrix dimensions N N. ≥To make this paper accessible to the non-expert reader, we have included a chapter∈ containing the required background material from superanalysis.
    [Show full text]
  • Super Fuzzy Matrices and Super Fuzzy Models for Social Scientists
    SUPER FUZZY MATRICES AND SUPER FUZZY MODELS FOR SOCIAL SCIENTISTS W. B. Vasantha Kandasamy e-mail: [email protected] web: http://mat.iitm.ac.in/~wbv www.vasantha.net Florentin Smarandache e-mail: [email protected] K. Amal e-mail: [email protected] INFOLEARNQUEST Ann Arbor 2008 This book can be ordered in a paper bound reprint from: Books on Demand ProQuest Information & Learning (University of Microfilm International) 300 N. Zeeb Road P.O. Box 1346, Ann Arbor MI 48106-1346, USA Tel.: 1-800-521-0600 (Customer Service) http://wwwlib.umi.com/bod/ Peer reviewers: Dr. S. Osman, Menofia University, Shebin Elkom, Egypt Prof. Valentin Boju, Ph.D., Officer of the Order “Cultural Merit” Category — “Scientific Research” MontrealTech — Institut de Techologie de Montreal Director, MontrealTech Press, P.O. Box 78574 Station Wilderton, Montreal, Quebec, H3S2W9, Canada Prof. Mircea Eugen Selariu, Polytech University of Timisoara, Romania. Copyright 2008 by InfoLearnQuest and authors Cover Design and Layout by Kama Kandasamy Many books can be downloaded from the following Digital Library of Science: http://www.gallup.unm.edu/~smarandache/eBooks-otherformats.htm ISBN-10: 1-59973-027-8 ISBN-13: 978-1-59973-027-1 EAN: 9781599730271 Standard Address Number: 297-5092 Printed in the United States of America 2 CONTENTS Preface 5 Chapter One BASIC CONCEPTS 7 1.1 Supermatrices 7 1.2 Introduction of Fuzzy Matrices 65 Chapter Two FUZZY SUPERMATRICES AND THEIR PROPERTIES 75 2.1 Fuzzy Supermatrices and their Properties 75 2.2 Pseudo Symmetric Supermatrices 117 2.3 Special Operations on Fuzzy Super Special Row and Column Matrix 140 Chapter Three INTRODUCTION TO NEW FUZZY SUPER MODELS 167 3.1 New Super Fuzzy Relational Maps (SFRM) Model 167 3.2 New Fuzzy Super Bidirectional Associative Memories (BAM) model 176 3.3 Description of Super Fuzzy Associative Memories 188 3 3.4 Illustration of Super Fuzzy Models 199 3.5 Super FCM Models 236 FURTHER READING 247 INDEX 275 ABOUT THE AUTHORS 279 4 PREFACE The concept of supermatrix for social scientists was first introduced by Paul Horst.
    [Show full text]
  • Chapter 2: Linear Algebra User's Manual
    Preprint typeset in JHEP style - HYPER VERSION Chapter 2: Linear Algebra User's Manual Gregory W. Moore Abstract: An overview of some of the finer points of linear algebra usually omitted in physics courses. May 3, 2021 -TOC- Contents 1. Introduction 5 2. Basic Definitions Of Algebraic Structures: Rings, Fields, Modules, Vec- tor Spaces, And Algebras 6 2.1 Rings 6 2.2 Fields 7 2.2.1 Finite Fields 8 2.3 Modules 8 2.4 Vector Spaces 9 2.5 Algebras 10 3. Linear Transformations 14 4. Basis And Dimension 16 4.1 Linear Independence 16 4.2 Free Modules 16 4.3 Vector Spaces 17 4.4 Linear Operators And Matrices 20 4.5 Determinant And Trace 23 5. New Vector Spaces from Old Ones 24 5.1 Direct sum 24 5.2 Quotient Space 28 5.3 Tensor Product 30 5.4 Dual Space 34 6. Tensor spaces 38 6.1 Totally Symmetric And Antisymmetric Tensors 39 6.2 Algebraic structures associated with tensors 44 6.2.1 An Approach To Noncommutative Geometry 47 7. Kernel, Image, and Cokernel 47 7.1 The index of a linear operator 50 8. A Taste of Homological Algebra 51 8.1 The Euler-Poincar´eprinciple 54 8.2 Chain maps and chain homotopies 55 8.3 Exact sequences of complexes 56 8.4 Left- and right-exactness 56 { 1 { 9. Relations Between Real, Complex, And Quaternionic Vector Spaces 59 9.1 Complex structure on a real vector space 59 9.2 Real Structure On A Complex Vector Space 64 9.2.1 Complex Conjugate Of A Complex Vector Space 66 9.2.2 Complexification 67 9.3 The Quaternions 69 9.4 Quaternionic Structure On A Real Vector Space 79 9.5 Quaternionic Structure On Complex Vector Space 79 9.5.1 Complex Structure On Quaternionic Vector Space 81 9.5.2 Summary 81 9.6 Spaces Of Real, Complex, Quaternionic Structures 81 10.
    [Show full text]
  • Lectures on Super Analysis
    Lectures on Super Analysis —– Why necessary and What’s that? Towards a new approach to a system of PDEs arXiv:1504.03049v4 [math-ph] 15 Dec 2015 e-Version1.5 December 16, 2015 By Atsushi INOUE NOTICE: COMMENCEMENT OF A CLASS i Notice: Commencement of a class Syllabus Analysis on superspace —– a construction of non-commutative analysis 3 October 2008 – 30 January 2009, 10.40-12.10, H114B at TITECH, Tokyo, A. Inoue Roughly speaking, RA(=real analysis) means to study properties of (smooth) functions defined on real space, and CA(=complex analysis) stands for studying properties of (holomorphic) functions defined on spaces with complex structure. On the other hand, we may extend the differentiable calculus to functions having definition domain in Banach space, for example, S. Lang “Differentiable Manifolds” or J.A. Dieudonn´e“Trea- tise on Analysis”. But it is impossible in general to extend differentiable calculus to those defined on infinite dimensional Fr´echet space, because the implicit function theorem doesn’t hold on such generally given Fr´echet space. Then, if the ground ring (like R or C) is replaced by non-commutative one, what type of analysis we may develop under the condition that newly developed analysis should be applied to systems of PDE or RMT(=Random Matrix Theory). In this lectures, we prepare as a “ground ring”, Fr´echet-Grassmann algebra having count- ably many Grassmann generators and we define so-called superspace over such algebra. On such superspace, we take a space of super-smooth functions as the main objects to study. This procedure is necessary not only to associate a Hamilton flow for a given 2d 2d system × of PDE which supports to resolve Feynman’s murmur, but also to make rigorous Efetov’s result in RMT.
    [Show full text]
  • The General Linear Supergroup and Its Hopf Superalgebra of Regular Functions
    View metadata, citation and similar papers at core.ac.uk brought to you by CORE provided by Elsevier - Publisher Connector Journal of Algebra 254 (2002) 44–83 www.academicpress.com The general linear supergroup and its Hopf superalgebra of regular functions M. Scheunert a and R.B. Zhang b,∗ a Physikalisches Institut der Universität Bonn, Nussallee 12, D-53115 Bonn, Germany b School of Mathematics and Statistics, University of Sydney, Sydney, NSW 2006, Australia Received 28 September 2001 Communicated by Susan Montgomery Abstract The structure of the Hopf superalgebra B of regular functions on the general linear supergroup is developed, and applied to study the representation theory of the supergroup. It is shown that the general linear supergroup can be reconstructed from B in a way reminiscent of the Tannaka–Krein theory. A Borel–Weil type realization is also obtained for the irreducible integrable representations. As a side result on the structure of B, Schur superalgebras are introduced and are shown to be semi-simple over the complex field, with the simple ideals determined explicitly. 2002 Elsevier Science (USA). All rights reserved. 1. Introduction We study the general linear supergroup from a Hopf algebraic point of view [16,17,24]. Our main motivation is from quantum supergroups, where the prime object of interest is the Hopf superalgebra of functions on a quantum supergroup. However, such a Hopf superalgebra is not supercommutative, and is much more difficult to study compared to its classical counterpart. A good understanding * Corresponding author. E-mail addresses: [email protected] (M. Scheunert), [email protected] (R.B.
    [Show full text]
  • Dsm Super Vector Space of Refined Labels
    W. B. Vasantha Kandasamy Florentin Smarandache ZIP PUBLISHING Ohio 2011 This book can be ordered from: Zip Publishing 1313 Chesapeake Ave. Columbus, Ohio 43212, USA Toll Free: (614) 485-0721 E-mail: [email protected] Website: www.zippublishing.com Copyright 2011 by Zip Publishing and the Authors Peer reviewers: Prof. Catalin Barbu, V. Alecsandri National College, Mathematics Department, Bacau, Romania Prof. Zhang Wenpeng, Department of Mathematics, Northwest University, Xi’an, Shaanxi, P.R.China. Prof. Mihàly Bencze, Department of Mathematics Áprily Lajos College, Bra2ov, Romania Many books can be downloaded from the following Digital Library of Science: http://www.gallup.unm.edu/~smarandache/eBooks-otherformats.htm ISBN-13: 978-1-59973-167-4 EAN: 9781599731674 Printed in the United States of America 2 5 7 1.1 Supermatrices and their Properties 7 1.2 Refined Labels and Ordinary Labels and their Properties 30 37 65 101 3 165 245 247 289 293 297 4 In this book authors for the first time introduce the notion of supermatrices of refined labels. Authors prove super row matrix of refined labels form a group under addition. However super row matrix of refined labels do not form a group under product; it only forms a semigroup under multiplication. In this book super column matrix of refined labels and m × n matrix of refined labels are introduced and studied. We mainly study this to introduce to super vector space of refined labels using matrices. We in this book introduce the notion of semifield of refined labels using which we define for the first time the notion of supersemivector spaces of refined labels.
    [Show full text]
  • Generalization of Nambu–Hamilton Equation and Extension of Nambu–Poisson Bracket to Superspace
    universe Article Generalization of Nambu–Hamilton Equation and Extension of Nambu–Poisson Bracket to Superspace Viktor Abramov Institute of Mathematics and Statistics, University of Tartu, J. Liivi 2, 50409 Tartu, Estonia; [email protected]; Tel.: +372-737-5862 Received: 17 September 2018; Accepted: 10 October 2018; Published: 15 October 2018 j Abstract: We propose a generalization of the Nambu–Hamilton equation in superspace R3 2 with three real and two Grassmann coordinates. We construct the even degree vector field in the superspace j R3 2 by means of the right-hand sides of the proposed generalization of the Nambu–Hamilton equation and show that this vector field is divergenceless in superspace. Then we show that our generalization of the Nambu–Hamilton equation in superspace leads to a family of ternary brackets of even degree functions defined with the help of a Berezinian. This family of ternary brackets is parametrized by the infinite dimensional group of invertible second order matrices, whose entries are differentiable functions on the space R3. We study the structure of the ternary bracket in a more j general case of a superspace Rn 2 with n real and two Grassmann coordinates and show that for any invertible second order functional matrix it splits into the sum of two ternary brackets, where one is the usual Nambu–Poisson bracket, extended in a natural way to even degree functions in j a superspace Rn 2, and the second is a new ternary bracket, which we call the Y-bracket, where Y can be identified with an invertible second order functional matrix.
    [Show full text]
  • The Berezinian Eugen Dizer
    The Berezinian Eugen Dizer 27.04.2021 The Berezinian, or superdeterminant, is a landmark of superalgebra and supergeometry. It is named after Felix A. Berezin who was a pioneer in supergeometry and superanalysis. We will see that the Berezinian is the super-analog of the classical determinant. The construction of the Berezinian via linear superalgebra and the integral of the super- trace is presented. The properties of the Berezinian are discussed and Liouville’s theorem is proven. In the end, an outlook to integration on superspaces is given. 1 Introduction Let us briefly recall some concepts from linear superalgebra and fix the notation for the rest of this report. Let V = Ap|q be a super vector space1 of bosonic and fermionic dimensions p|q. A basis of V therefore consists of p even vectors e1, ..., ep and q odd vectors f1, ..., fq, with the whole collection being linearly independent. The basis is abbreviated as (e1, ..., ep|f1, ..., fq). The super vector space V can be decomposed as V = Veven ⊕ Vodd, where the summands are of dimension p|0 and 0|q. We can write a linear transformation2 p|q p|q p|q T : A → A , T ∈ End(A )0, in matrix form as [10] KL ! T = ∈ Mat(Ap|q) , (1.1) MN 0 where K is a p × p matrix consisting of even elements of A, L is a p × q matrix of odd elements, M is a q × p matrix of odd elements and N is a q × q matrix of even elements. We say that K and N are even blocks and L and M are odd blocks.
    [Show full text]
  • On Supermatrix Models, Poisson Geometry and Noncommutative Supersymmetric Gauge Theories Ctirad Klimcik
    On supermatrix models, Poisson geometry and noncommutative supersymmetric gauge theories Ctirad Klimcik To cite this version: Ctirad Klimcik. On supermatrix models, Poisson geometry and noncommutative supersymmetric gauge theories. Journal of Mathematical Physics, American Institute of Physics (AIP), 2015, 56, pp.122302. 10.1063/1.4937450. hal-01246189 HAL Id: hal-01246189 https://hal.archives-ouvertes.fr/hal-01246189 Submitted on 18 Dec 2015 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. On supermatrix models, Poisson geometry, and noncommutative supersymmetric gauge theories Ctirad Klimčík Citation: Journal of Mathematical Physics 56, 122302 (2015); doi: 10.1063/1.4937450 View online: http://dx.doi.org/10.1063/1.4937450 View Table of Contents: http://scitation.aip.org/content/aip/journal/jmp/56/12?ver=pdfcov Published by the AIP Publishing Articles you may be interested in Gauge theories in noncommutative homogeneous Kähler manifolds J. Math. Phys. 55, 092301 (2014); 10.1063/1.4893982 Noncommutative gauge supersymmetric theory in two dimensions in Minkowski space AIP Conf. Proc. 1444, 434 (2012); 10.1063/1.4715471 Gauge theories in noncommutative geometry AIP Conf. Proc. 1446, 73 (2012); 10.1063/1.4727990 Consistent anomalies in translation-invariant noncommutative gauge theories J.
    [Show full text]
  • Doktorarbeit Supersymmetry in Random Matrix Theory
    Universität Duisburg-Essen Fakultät für Physik Doktorarbeit zur Erlangung des Doktorgrades „Dr. rer. nat.“ Supersymmetry in Random Matrix Theory von Mario Kieburg geboren am 23.06.1981 in Zossen Tag der Einreichung: 22.01.2010 Jahrelang in einer Wüste lebst du nun auf off’nem Meer, erlebst ein paar neu’ Gelüste and die Angst fährt hinterher. Jahrelang auf flachem Land steigst du auf den höchsten Berg. Die Sicht war einst dir unbekannt, nun fühlst du dich wie ein Zwerg. Jahrelang mit was Vertrautem, jahrelang hast du nichts gesehen, nach Jahren mit was Verbautem hast du es schwer, neu zu verstehen. Mario Kieburg Tag der Disputation: 04.05.2010 Erstgutachter: Prof. Dr. Thomas Guhr Zweitgutachter: Prof. Dr. Tilo Wettig Drittgutachter: Prof. Dr. Hans Werner Diehl Prüfungsvorsitzender: Prof. Dr. Rolf Möller weiterer Prüfer: Prof. Dr. Hans-Jürgen Sommers Teile dieser Arbeit sind in den wissenschaftlichen Artikeln: [1] M. Kieburg, H. Kohler, and T. Guhr. J. Math. Phys., 50:013528, 2009. preprint: arXiv:0809.2674. [2] M. Kieburg, J. Grönqvist, and T. Guhr. J. Phys., A 42:275205, 2009. preprint: arXiv:0905.3253. [3] M. Kieburg, H.-J. Sommers, and T. Guhr. J. Phys., A 42:275206, 2009. preprint: arXiv:0905.3256. [4] M. Kieburg and T. Guhr. J. Phys., A 43:075201, 2010. preprint: arXiv:0912.0654. [5] M. Kieburg and T. Guhr. J. Phys., A 43:135204, 2010. preprint: arXiv:0912.0658. schon veröffentlicht worden. Acknowledgements First of all, I thank my wife who gave me strength and perseverance to finish this thesis. I am glad that she has so much patience with me for working not only at the university but also at home.
    [Show full text]
  • Gauge Supergravity in D= 2+ 2
    Published for SISSA by Springer Received: July 25, 2017 Revised: September 10, 2017 Accepted: September 17, 2017 Published: October 10, 2017 Gauge supergravity in D = 2 + 2 JHEP10(2017)062 Leonardo Castellani Dipartimento di Scienze e Innovazione Tecnologica, Universit`adel Piemonte Orientale, viale T. Michel 11, Alessandria, 15121 Italy INFN, Sezione di Torino, via P. Giuria 1, Torino, 10125 Italy Arnold-Regge Center, via P. Giuria 1, Torino, 10125 Italy E-mail: [email protected] Abstract: We present an action for chiral N = (1, 0) supergravity in 2 + 2 dimensions. The fields of the theory are organized into an OSp(1 4) connection supermatrix, and are | given by the usual vierbein V a, spin connection ωab, and Majorana gravitino ψ. In anal- ogy with a construction used for D = 10 + 2 gauge supergravity, the action is given by STr(R2Γ), where R is the OSp(1 4) curvature supermatrix two-form, and Γ a constant | supermatrix containing γ5. It is similar, but not identical to the MacDowell-Mansouri R action for D = 2 + 2 supergravity. The constant supermatrix breaks OSp(1 4) gauge in- | variance to a subalgebra OSp(1 2) Sp(2), including a Majorana-Weyl supercharge. Thus | ⊕ half of the OSp(1 4) gauge supersymmetry survives. The gauge fields are the selfdual part | of ωab and the Weyl projection of ψ for OSp(1 2), and the antiselfdual part of ωab for Sp(2). | Supersymmetry transformations, being part of a gauge superalgebra, close off-shell. The selfduality condition on the spin connection can be consistently imposed, and the resulting “projected” action is OSp(1 2) gauge invariant.
    [Show full text]