Pairs Shortest Paths for Graphs with Small Integer Length Edges

Total Page:16

File Type:pdf, Size:1020Kb

Pairs Shortest Paths for Graphs with Small Integer Length Edges Journal of Computer and System Sciences 1385 journal of computer and system sciences 54, 243254 (1997) article no. SS971385 View metadata,All Pairs citation and Shortest similar papers at Paths core.ac.uk for Graphs with Small Integer Length Edgesbrought to you by CORE provided by Elsevier - Publisher Connector Zvi Galil* Department of Computer Science, Tel-Aviv University, Tel Aviv, Israel and Columbia University, New York, New York 10027 and Oded Margalit Department of Computer Science, Tel-Aviv University, Tel Aviv, Israel Received August 26, 1993; revised May 24, 1995 P def l length of P is defined as dij = r=1 dkr&1kr . For every two The authors have solved the all pairs shortest distances (APSD) vertices v and v , on the path P, where \ =k and \1 \2 1 +1 problem for graphs with integer edge lengths. Our algorithm is sub- P \2=k+ , +1<+2 , we define d as the length of the sub- cubic for edge lengths of small (M) absolute value. In this paper we 2 \1 \2 path from v to v : +2 d . show how to transform these algorithms to solve the all pairs shortest \1 \2 r=+1+1 kr&1kr paths (APSP), in the same time complexity, up to a polylogarithmic We use the graph G and its edge distance matrix D inter- factor. For n=|V| the number of vertices, M the bound on edge length, changingly, i.e., we refer to ``paths'' in D which should be and | the exponent of matrix multiplication, we get the following read as ``paths in the corresponding graph G.'' A cycle is a results: 1. A directed nonnegative APSP(n, M) algorithm which runs in path from v to v .Anegative cycle is a cycle whose length O (T(n, M)) time, where i i is negative. M (|&1)Â2n(3+|)Â2, 1Mn(3&|)Â(|+1) Given a matrix X, we use the notation X for the element T(n, m)= ij {Mn(5|&3)Â(|+1), n(3&|)Â(|+1)Mn2(3&|)Â(|+1). in the ith row and jth column of X; There are two excep- tions: D and D*, where we use d and d*, respectively. 2. An undirected APSP(n, M) algorithm which runs in O (M (|+1)Â2n| ij ij log(Mn)) time. 3. A general APSP(n, M) algorithm which runs in The all pairs shortest distances (APSD) problem is the (3+|)Â2 O ((Mn) ). ] 1997 Academic Press problem of finding, for every pair of vertices vi and vj in V, the length of a shortest nonempty path from vi to vj .We n denote the solution matrix by D*=[d*ij ] i, j=1. 1. INTRODUCTION The all pairs shortest paths (APSP) problem is the problem of finding, not only the distances but a charac- In this paper we show how to change our algorithms for terization of all the shortest paths as well. the all pairs shortest distances (APSD) to solve the all pairs We use the notations APSD (n, M) and APSP (n, M) for shortest paths (APSP) problem. We do it for several cases the problems on graphs with n vertices and the edge lengths and the algorithms are as efficient as the corresponding are either or integers whose absolute value is bounded APSD ones in each case (up to a polylogarithmic factor). by M. We use fast witnessed Boolean matrix multiplications (see In the problems above we exclude empty paths. This [3]). is without loss of generality, since we can solve the prob- Let G=(V, E) be a directed graph with n=|V| vertices lem which allows empty paths by first solving the n problem without them and then we update the solution [v1, v2, ..., vn] and m=|E| edges. Let D=[dij] i, j=1 be a distance function from the edges to the real numbers with by taking d$*=minii [dii*, 0]. Updating the paths (not only the distances) is trivial too. .(dij= if and only if vi Ä vj is not an edge in E). We def Let A be an integer matrix and let a be an integer. define dii = 0. The notation [Aa] stands for a Boolean matrix defined A path P from vi to vj in G is a sequence of vertices vi= by vk0 , vk1 , ..., vkl=vj . The number of edges in the path is defined as l.Ifl=0 we call the path an empty path. The * Work partially supported by NSF Grants CCR-90-14605 and CISE 1, Aija [Aa]ij= Institutional Infrastructure Grant CDA-90-24735. {0, otherwise. 243 0022-0000Â97 25.00 Copyright 1997 by Academic Press All rights of reproduction in any form reserved. File: 571J 138501 . By:CV . Date:01:04:97 . Time:12:56 LOP8M. V8.0. Page 01:01 Codes: 5954 Signs: 3869 . Length: 60 pic 11 pts, 257 mm 244 GALIL AND MARGALIT Similarly define the notations [A=a], [A # B] for a set B, with a vertex vk on the path and a negative cycle containing etc. We also use relations on matrices which are defined vk (i, j, and k need not be distinct). This leads to the need to elementwise. AB, for example, holds if and only if define witnesses for paths, not necessarily shortest paths. Aij Bij for all i and j. We use our results on transitive closure in [3]. Let A and B be n_n Boolean matrices. Let C be the n_n We modify the algorithms of [1, 2] for the APSD Boolean matrix product of A and B be denoted by C=A } B problem. The main idea is to run the appropriate algorithm, n and defined as Cij=k=1Aik 7 Bkj . The trivial way to com- but to change the Boolean matrix multiplications to a wit- pute C takes 3(n3) time. There are faster ways to compute nessed Boolean matrix multiplication. This works fine for it. Denote the time complexity of the fastest n_n matrix the positive case (see Section 2). In the undirected case we multiplication over a ring by M(n). Define |, the exponent make some observations and a slight modification of the of matrix multiplication, to be the infimum over all real APSD algorithm (see Section 3). The most difficult case is numbers x for which matrix multiplication of n_n matrices the general one, there we encounter some difficulties, mainly can be computed in O(nx) time. Currently, the best bound because of cycles. We overcome them by reducing the on | is |<2.376 (see [4]). Although it is not exactly true problem in several steps: first we remove negative cycles, (the infimum might not be a minimum), we assume that then other & distances; then zero length cycles; until we M(n)=O(n|). A witnessed matrix multiplication algorithm reach a graph where the cycles cause no problem. The computes in addition to the Boolean matrix multiplication details are given in Section 5. In Section 6 we briefly discuss a witness matrix W such that if Cij=1, then Wij=k such the case of large edge lengths. that Aik=Bkj=1. In [3] we showed how to compute W in O (n|) time. 2. POSITIVE EDGE LENGTHS In this paper we use the results of [2] and some other new techniques to modify the APSD algorithms to the In this section we transform solution for the positive APSP case. The naive way to represent the solution to the unweighted APSD problem into APSP one. First we sketch APSP problem is to write down the full path for every one (without proof) the different parts of the APSD algorithm of the n2 pairs. Figure 1 shows that this output can be 0(n3) 3 (for more details and proofs see [2]). Then we show how to long (more than n Â27 edges to be precise). In fact, this transform each part such that we will find witnesses for the holds for an exponential number of input graphs. (Replace paths too. each cycle in Fig. 1 by an arbitrary connected graph of nÂ3 The algorithm is: vertices.) def (3&|)Â2 One way to avoid this cubic bottleneck is to compute wit- 1. For k=1, 2, ..., L0 = n , compute [D*k] nesses for shortest paths. We use the definition of witness as follows: [D*0]=I and [D*k+1]=[D*k]} matrix W as follows: A witness for a path from vi to vj is a [D=1]. vertex vk such that dij*=dik+d*kj . This definition is not suf- (|&1)Â2 3 r (3&|)Â2 2. For r=1, 2, ..., log1.5 n , let Lr=(2) n . ficient for graphs with zero length cycles, so we define a wit- [D*L ] is the output of the previous step. Compute ness matrix W for the APSP problem to be an n_n integer 0 [D*Lr+1] from [D*Lr] using the ``separator trick'' matrix W such that as follows: We consider in turn each vertex as a source and the layered graph obtained by single source shortest paths. 1. Wij is a witness for a path from vi to vj . We take a block of consecutive layers, choose the smallest 2. For every pair of vertices v and v , there exists a finite i j one and use it as a separator. Each path that goes beyond path P=[v , v , ..., v ], where k =i and k =j, such that k0 k1 kl 0 l the separator must go through the separator. Hence we k =W for every 1rl. r kr&1j minimize over the choice of the vertex on the separator.
Recommended publications
  • Perron–Frobenius Theory of Nonnegative Matrices
    Buy from AMAZON.com http://www.amazon.com/exec/obidos/ASIN/0898714540 CHAPTER 8 Perron–Frobenius Theory of Nonnegative Matrices 8.1 INTRODUCTION m×n A ∈ is said to be a nonnegative matrix whenever each aij ≥ 0, and this is denoted by writing A ≥ 0. In general, A ≥ B means that each aij ≥ bij. Similarly, A is a positive matrix when each aij > 0, and this is denoted by writing A > 0. More generally, A > B means that each aij >bij. Applications abound with nonnegative and positive matrices. In fact, many of the applications considered in this text involve nonnegative matrices. For example, the connectivity matrix C in Example 3.5.2 (p. 100) is nonnegative. The discrete Laplacian L from Example 7.6.2 (p. 563) leads to a nonnegative matrix because (4I − L) ≥ 0. The matrix eAt that defines the solution of the system of differential equations in the mixing problem of Example 7.9.7 (p. 610) is nonnegative for all t ≥ 0. And the system of difference equations p(k)=Ap(k − 1) resulting from the shell game of Example 7.10.8 (p. 635) has Please report violations to [email protected] a nonnegativeCOPYRIGHTED coefficient matrix A. Since nonnegative matrices are pervasive, it’s natural to investigate their properties, and that’s the purpose of this chapter. A primary issue concerns It is illegal to print, duplicate, or distribute this material the extent to which the properties A > 0 or A ≥ 0 translate to spectral properties—e.g., to what extent does A have positive (or nonnegative) eigen- values and eigenvectors? The topic is called the “Perron–Frobenius theory” because it evolved from the contributions of the German mathematicians Oskar (or Oscar) Perron 89 and 89 Oskar Perron (1880–1975) originally set out to fulfill his father’s wishes to be in the family busi- Buy online from SIAM Copyright c 2000 SIAM http://www.ec-securehost.com/SIAM/ot71.html Buy from AMAZON.com 662 Chapter 8 Perron–Frobenius Theory of Nonnegative Matrices http://www.amazon.com/exec/obidos/ASIN/0898714540 Ferdinand Georg Frobenius.
    [Show full text]
  • 4.6 Matrices Dimensions: Number of Rows and Columns a Is a 2 X 3 Matrix
    Matrices are rectangular arrangements of data that are used to represent information in tabular form. 1 0 4 A = 3 - 6 8 a23 4.6 Matrices Dimensions: number of rows and columns A is a 2 x 3 matrix Elements of a matrix A are denoted by aij. a23 = 8 1 2 Data about many kinds of problems can often be represented by Matrix of coefficients matrix. Solutions to many problems can be obtained by solving e.g Average temperatures in 3 different cities for each month: systems of linear equations. For example, the constraints of a problem are represented by the system of linear equations 23 26 38 47 58 71 78 77 69 55 39 33 x + y = 70 A = 14 21 33 38 44 57 61 59 49 38 25 21 3 cities 24x + 14y = 1180 35 46 54 67 78 86 91 94 89 75 62 51 12 months Jan - Dec 1 1 rd The matrix A = Average temp. in the 3 24 14 city in July, a37, is 91. is the matrix of coefficient for this system of linear equations. 3 4 In a matrix, the arrangement of the entries is significant. Square Matrix is a matrix in which the number of Therefore, for two matrices to be equal they must have rows equals the number of columns. the same dimensions and the same entries in each location. •Main Diagonal: in a n x n square matrix, the elements a , a , a , …, a form the main Example: Let 11 22 33 nn diagonal of the matrix.
    [Show full text]
  • Recent Developments in Boolean Matrix Factorization
    Proceedings of the Twenty-Ninth International Joint Conference on Artificial Intelligence (IJCAI-20) Survey Track Recent Developments in Boolean Matrix Factorization Pauli Miettinen1∗ and Stefan Neumann2y 1University of Eastern Finland, Kuopio, Finland 2University of Vienna, Vienna, Austria pauli.miettinen@uef.fi, [email protected] Abstract analysts, and van den Broeck and Darwiche [2013] to lifted inference community, to name but a few examples. Even more The goal of Boolean Matrix Factorization (BMF) is recently, Ravanbakhsh et al. [2016] studied the problem in to approximate a given binary matrix as the product the framework of machine learning, increasing the interest of of two low-rank binary factor matrices, where the that community, and Chandran et al. [2016]; Ban et al. [2019]; product of the factor matrices is computed under Fomin et al. [2019] (re-)launched the interest in the problem the Boolean algebra. While the problem is computa- in the theory community. tionally hard, it is also attractive because the binary The various fields in which BMF is used are connected by nature of the factor matrices makes them highly in- the desire to “keep the data binary”. This can be because terpretable. In the last decade, BMF has received a the factorization is used as a pre-processing step, and the considerable amount of attention in the data mining subsequent methods require binary input, or because binary and formal concept analysis communities and, more matrices are more interpretable in the application domain. In recently, the machine learning and the theory com- the latter case, Boolean algebra is often preferred over the field munities also started studying BMF.
    [Show full text]
  • A Complete Bibliography of Publications in Linear Algebra and Its Applications: 2010–2019
    A Complete Bibliography of Publications in Linear Algebra and its Applications: 2010{2019 Nelson H. F. Beebe University of Utah Department of Mathematics, 110 LCB 155 S 1400 E RM 233 Salt Lake City, UT 84112-0090 USA Tel: +1 801 581 5254 FAX: +1 801 581 4148 E-mail: [email protected], [email protected], [email protected] (Internet) WWW URL: http://www.math.utah.edu/~beebe/ 12 March 2021 Version 1.74 Title word cross-reference KY14, Rim12, Rud12, YHH12, vdH14]. 24 [KAAK11]. 2n − 3[BCS10,ˇ Hil13]. 2 × 2 [CGRVC13, CGSCZ10, CM14, DW11, DMS10, JK11, KJK13, MSvW12, Yan14]. (−1; 1) [AAFG12].´ (0; 1) 2 × 2 × 2 [Ber13b]. 3 [BBS12b, NP10, Ghe14a]. (2; 2; 0) [BZWL13, Bre14, CILL12, CKAC14, Fri12, [CI13, PH12]. (A; B) [PP13b]. (α, β) GOvdD14, GX12a, Kal13b, KK14, YHH12]. [HW11, HZM10]. (C; λ; µ)[dMR12].(`; m) p 3n2 − 2 2n3=2 − 3n [MR13]. [DFG10]. (H; m)[BOZ10].(κ, τ) p 3n2 − 2 2n3=23n [MR14a]. 3 × 3 [CSZ10, CR10c]. (λ, 2) [BBS12b]. (m; s; 0) [Dru14, GLZ14, Sev14]. 3 × 3 × 2 [Ber13b]. [GH13b]. (n − 3) [CGO10]. (n − 3; 2; 1) 3 × 3 × 3 [BH13b]. 4 [Ban13a, BDK11, [CCGR13]. (!) [CL12a]. (P; R)[KNS14]. BZ12b, CK13a, FP14, NSW13, Nor14]. 4 × 4 (R; S )[Tre12].−1 [LZG14]. 0 [AKZ13, σ [CJR11]. 5 Ano12-30, CGGS13, DLMZ14, Wu10a]. 1 [BH13b, CHY12, KRH14, Kol13, MW14a]. [Ano12-30, AHL+14, CGGS13, GM14, 5 × 5 [BAD09, DA10, Hil12a, Spe11]. 5 × n Kal13b, LM12, Wu10a]. 1=n [CNPP12]. [CJR11]. 6 1 <t<2 [Seo14]. 2 [AIS14, AM14, AKA13, [DK13c, DK11, DK12a, DK13b, Kar11a].
    [Show full text]
  • COMPUTING RELATIVELY LARGE ALGEBRAIC STRUCTURES by AUTOMATED THEORY EXPLORATION By
    COMPUTING RELATIVELY LARGE ALGEBRAIC STRUCTURES BY AUTOMATED THEORY EXPLORATION by QURATUL-AIN MAHESAR A thesis submitted to The University of Birmingham for the degree of DOCTOR OF PHILOSOPHY School of Computer Science College of Engineering and Physical Sciences The University of Birmingham March 2014 University of Birmingham Research Archive e-theses repository This unpublished thesis/dissertation is copyright of the author and/or third parties. The intellectual property rights of the author or third parties in respect of this work are as defined by The Copyright Designs and Patents Act 1988 or as modified by any successor legislation. Any use made of information contained in this thesis/dissertation must be in accordance with that legislation and must be properly acknowledged. Further distribution or reproduction in any format is prohibited without the permission of the copyright holder. Abstract Automated reasoning technology provides means for inference in a formal context via a multitude of disparate reasoning techniques. Combining different techniques not only increases the effectiveness of single systems but also provides a more powerful approach to solving hard problems. Consequently combined reasoning systems have been successfully employed to solve non-trivial mathematical problems in combinatorially rich domains that are intractable by traditional mathematical means. Nevertheless, the lack of domain specific knowledge often limits the effectiveness of these systems. In this thesis we investigate how the combination of diverse reasoning techniques can be employed to pre-compute additional knowledge to enable mathematical discovery in finite and potentially infinite domains that is otherwise not feasible. In particular, we demonstrate how we can exploit bespoke symbolic computations and automated theorem proving to automatically compute and evolve the structural knowledge of small size finite structures in the algebraic theory of quasigroups.
    [Show full text]
  • View This Volume's Front and Back Matter
    Combinatorics o f Nonnegative Matrice s This page intentionally left blank 10.1090/mmono/213 Translations o f MATHEMATICAL MONOGRAPHS Volume 21 3 Combinatorics o f Nonnegative Matrice s V. N. Sachko v V. E. Tarakano v Translated b y Valentin F . Kolchl n | yj | America n Mathematica l Societ y Providence, Rhod e Islan d EDITORIAL COMMITTE E AMS Subcommitte e Robert D . MacPherso n Grigorii A . Marguli s James D . Stashef f (Chair ) ASL Subcommitte e Steffe n Lemp p (Chair ) IMS Subcommitte e Mar k I . Freidli n (Chair ) B. H . Ca^KOB , B . E . TapaKaHO B KOMBMHATOPMKA HEOTPMUATEJIBHbl X MATPM U Hay^Hoe 143/iaTeJibCTB O TBE[ , MocKBa , 200 0 Translated fro m th e Russia n b y Dr . Valenti n F . Kolchi n 2000 Mathematics Subject Classification. Primar y 05-02 ; Secondary 05C50 , 15-02 , 15A48 , 93-02. Library o f Congress Cataloging-in-Publicatio n Dat a Sachkov, Vladimi r Nikolaevich . [Kombinatorika neotritsatel'nyk h matrits . English ] Combinatorics o f nonnegativ e matrice s / V . N . Sachkov , V . E . Tarakano v ; translate d b y Valentin F . Kolchin . p. cm . — (Translations o f mathematical monographs , ISS N 0065-928 2 ; v. 213) Includes bibliographica l reference s an d index. ISBN 0-8218-2788- X (acid-fre e paper ) 1. Non-negative matrices. 2 . Combinatorial analysis . I . Tarakanov, V . E. (Valerii Evgen'evich ) II. Title . III . Series. QA188.S1913 200 2 512.9'434—dc21 200207439 2 Copying an d reprinting . Individua l reader s o f thi s publication , an d nonprofi t librarie s acting fo r them, ar e permitted t o make fai r us e of the material, suc h a s to copy a chapter fo r use in teachin g o r research .
    [Show full text]
  • Additional Details and Fortification for Chapter 1
    APPENDIX A Additional Details and Fortification for Chapter 1 A.1 Matrix Classes and Special Matrices The matrices can be grouped into several classes based on their operational prop- erties. A short list of various classes of matrices is given in Tables A.1 and A.2. Some of these have already been described earlier, for example, elementary, sym- metric, hermitian, othogonal, unitary, positive definite/semidefinite, negative defi- nite/semidefinite, real, imaginary, and reducible/irreducible. Some of the matrix classes are defined based on the existence of associated matri- ces. For instance, A is a diagonalizable matrix if there exists nonsingular matrices T such that TAT −1 = D results in a diagonal matrix D. Connected with diagonalizable matrices are normal matrices. A matrix B is a normal matrix if BB∗ = B∗B.Normal matrices are guaranteed to be diagonalizable matrices. However, defective matri- ces are not diagonalizable. Once a matrix has been identified to be diagonalizable, then the following fact can be used for easier computation of integral powers of the matrix: A = T −1DT → Ak = T −1DT T −1DT ··· T −1DT = T −1DkT and then take advantage of the fact that ⎛ ⎞ dk 0 ⎜ 1 ⎟ K . D = ⎝ .. ⎠ K 0 dN Another set of related classes of matrices are the idempotent, projection, invo- lutory, nilpotent, and convergent matrices. These classes are based on the results of integral powers. Matrix A is idempotent if A2 = A, and if, in addition, A is hermitian, then A is known as a projection matrix. Projection matrices are used to partition an N-dimensional space into two subspaces that are orthogonal to each other.
    [Show full text]
  • A Absolute Uncertainty Or Error, 414 Absorbing Markov Chains, 700
    Index Bauer–Fike bound, 528 A beads on a string, 559 Bellman, Richard, xii absolute uncertainty or error, 414 Beltrami, Eugenio, 411 absorbing Markov chains, 700 Benzi, Michele, xii absorbing states, 700 Bernoulli, Daniel, 299 addition, properties of, 82 Bessel, Friedrich W., 305 additive identity, 82 Bessel’s inequality, 305 additive inverse, 82 best approximate inverse, 428 adjacency matrix, 100 biased estimator, 446 adjoint, 84, 479 binary representation, 372 adjugate, 479 Birkhoff, Garrett, 625 affine functions, 89 Birkhoff’s theorem, 702 affine space, 436 bit reversal, 372 algebraic group, 402 bit reversing permutation matrix, 381 algebraic multiplicity, 496, 510 block diagonal, 261–263 amplitude, 362 rank of, 137 Anderson-Duffin formula, 441 using real arithmetic, 524 Anderson, Jean, xii block matrices, 111 Anderson, W. N., Jr., 441 determinant of, 475 angle, 295 linear operators, 392 canonical, 455 block matrix multiplication, 111 between complementary spaces, 389, 450 block triangular, 112, 261–263 maximal, 455 determinants, 467 principal, 456 eigenvalues of, 501 between subspaces, 450 Bolzano–Weierstrass theorem, 670 annihilating polynomials, 642 Boolean matrix, 679 aperiodic Markov chain, 694 bordered matrix, 485 Arnoldi’s algorithm, 653 eigenvalues of, 552 Arnoldi, Walter Edwin, 653 branch, 73, 204 associative property Brauer, Alfred, 497 of addition, 82 Bunyakovskii, Victor, 271 of matrix multiplication, 105 of scalar multiplication, 83 C asymptotic rate of convergence, 621 augmented matrix, 7 cancellation law, 97 Autonne, L., 411 canonical angles, 455 canonical form, reducible matrix, 695 B Cantor, Georg, 597 Cauchy, Augustin-Louis, 271 back substitution, 6, 9 determinant formula, 484 backward error analysis, 26 integral formula, 611 backward triangle inequality, 273 Cauchy–Bunyakovskii–Schwarz inequality, 272 band matrix, 157 Cauchy–Goursat theorem, 615 Bartlett, M.
    [Show full text]
  • Matrix Multiplication Based Graph Algorithms
    Matrix Multiplication and Graph Algorithms Uri Zwick Tel Aviv University February 2015 Last updated: June 10, 2015 Short introduction to Fast matrix multiplication Algebraic Matrix Multiplication j i Aa ()ij Bb ()ij = Cc ()ij Can be computed naively in O(n3) time. Matrix multiplication algorithms Complexity Authors n3 — n2.81 Strassen (1969) … n2.38 Coppersmith-Winograd (1990) Conjecture/Open problem: n2+o(1) ??? Matrix multiplication algorithms - Recent developments Complexity Authors n2.376 Coppersmith-Winograd (1990) n2.374 Stothers (2010) n2.3729 Williams (2011) n2.37287 Le Gall (2014) Conjecture/Open problem: n2+o(1) ??? Multiplying 22 matrices 8 multiplications 4 additions Works over any ring! Multiplying nn matrices 8 multiplications 4 additions T(n) = 8 T(n/2) + O(n2) lg8 3 T(n) = O(n )=O(n ) ( lgn = log2n ) “Master method” for recurrences 푛 푇 푛 = 푎 푇 + 푓 푛 , 푎 ≥ 1 , 푏 > 1 푏 푓 푛 = O(푛log푏 푎−휀) 푇 푛 = Θ(푛log푏 푎) 푓 푛 = O(푛log푏 푎) 푇 푛 = Θ(푛log푏 푎 log 푛) 푓 푛 = O(푛log푏 푎+휀) 푛 푇 푛 = Θ(푓(푛)) 푎푓 ≤ 푐푛 , 푐 < 1 푏 [CLRS 3rd Ed., p. 94] Strassen’s 22 algorithm CABAB 11 11 11 12 21 MAABB1( 11 Subtraction! 22 )( 11 22 ) CABAB12 11 12 12 22 MAAB2() 21 22 11 CABAB21 21 11 22 21 MABB3 11() 12 22 CABAB22 21 12 22 22 MABB4 22() 21 11 MAAB5() 11 12 22 CMMMM 11 1 4 5 7 MAABB6 ( 21 11 )( 11 12 ) CMM 12 3 5 MAABB7( 12 22 )( 21 22 ) CMM 21 2 4 7 multiplications CMMMM 22 1 2 3 6 18 additions/subtractions Works over any ring! (Does not assume that multiplication is commutative) Strassen’s nn algorithm View each nn matrix as a 22 matrix whose elements
    [Show full text]
  • Sign Pattern Matrix (Or Sign Pattern, Or Pattern)
    An Introduction to Sign Pattern Matrices and Some Connections Between Boolean and Nonnegative Sign Patterns Frank J. Hall Department of Mathematics and Statistics Georgia State University Atlanta, GA 30303 U.S.A. E-mail: [email protected] 1 1. Introduction The origins of sign pattern matrices are in the 1947 book Foundations of Economic Analysis by the No- bel Economics Prize winner P. Samuelson, who pointed to the need to solve certain problems in economics and other areas based only on the signs of the entries of the matrices. (the exact values of the entries of the matrices may not always be known) The study of sign pattern matrices has become somewhat synonymous with qualitative matrix analysis. Because of the interplay between sign pattern matrices and graph theory, the study of sign patterns is regarded as a part of combinatorial matrix theory. 2 The 1987 dissertation of C. Eschenbach, directed by C.R. Johnson, studied sign patterns that “require” or “al- low” certain properties and summarized the work on sign patterns up to that point. In 1995, Richard Brualdi and Bryan Shader produced a thorough treatment Matrices of Sign-Solvable Linear Systems on sign pattern matrices from the sign-solvability vantage point. Since 1995 there has been a considerable number of pa- pers on sign patterns and some generalized notions such as ray patterns. Handbook of Linear Algebra, 2007, CRC Press, Chap- ter 33 Sign Pattern Matrices (Hall/Li) 3 A matrix whose entries are from the set {+, −, 0} is called a sign pattern matrix (or sign pattern, or pattern).
    [Show full text]
  • C-SALT: Mining Class-Specific Alterations in Boolean Matrix
    C-SALT: Mining Class-Specific ALTerations in Boolean Matrix Factorization Sibylle Hess and Katharina Morik TU Dortmund University, Computer Science 8, Dortmund, Germany fsibylle.hess,[email protected], http://www-ai.cs.uni-dortmund.de/PERSONAL/fmorik,hessg.html Abstract. Given labeled data represented by a binary matrix, we con- sider the task to derive a Boolean matrix factorization which identifies commonalities and specifications among the classes. While existing works focus on rank-one factorizations which are either specific or common to the classes, we derive class-specific alterations from common factoriza- tions as well. Therewith, we broaden the applicability of our new method to datasets whose class-dependencies have a more complex structure. On the basis of synthetic and real-world datasets, we show on the one hand that our method is able to filter structure which corresponds to our model assumption, and on the other hand that our model assumption is justified in real-world application. Our method is parameter-free. Keywords: Boolean matrix factorization, shared subspace learning, non- convex optimization, proximal alternating linearized optimization 1 Introduction When given labeled data, a natural instinct for a data miner is to build a dis- criminative model that predicts the correct class. Yet in this paper we put the focus on the characterization of the data with respect to the label, i.e., finding similarities and differences between chunks of data belonging to miscellaneous classes. Consider a binary matrix where each row is assigned to one class. Such data emerge from fields such as gene expression analysis, e.g., a row reflects the genetic information of a cell, assigned to one tissue type (primary/relapse/no tumor), market basket analysis, e.g., a row indicates purchased items at the as- signed store, or from text analyses, e.g., a row corresponds to a document/article arXiv:1906.09907v1 [cs.LG] 17 Jun 2019 and the class denotes the publishing platform.
    [Show full text]
  • Engineering Boolean Matrix Multiplication for Multiple-Accelerator Shared-Memory Architectures
    Engineering Boolean Matrix Multiplication for Multiple-Accelerator Shared-Memory Architectures MATTI KARPPA, Aalto University, Finland PETTERI KASKI, Aalto University, Finland We study the problem of multiplying two bit matrices with entries either over the Boolean algebra ¹0; 1; _; ^º or over the binary field ¹0; 1; +; ·º. We engineer high-performance open-source algorithm implementations for contemporary multiple-accelerator shared-memory architectures, with the objective of time-and-energy-efficient scaling up to input sizes close to the available shared memory capacity. For example, given two terabinary-bit square matrices as input, our implementations compute the Boolean product in approximately 2100 seconds (1.0 Pbop/s at 3.3 pJ/bop for a total of 2.1 kWh/product) and the binary product in less than 950 seconds (2.4 effective Pbop/s at 1.5 effective pJ/bop for a total of 0.92 kWh/product) on an NVIDIA DGX-1 with power consumption atpeak system power (3.5 kW). Our contributions are (a) for the binary product, we use alternative-basis techniques of Karstadt and Schwartz [SPAA ’17] to design novel alternative-basis variants of Strassen’s recurrence for 2 × 2 block multiplication [Numer. Math. 13 (1969)] that have been optimized for both the number of additions and low working memory, (b) structuring the parallel block recurrences and the memory layout for coalescent and register-localized execution on accelerator hardware, (c) low-level engineering of the innermost block products for the specific target hardware, and (d) structuring the top-level shared-memory implementation to feed the accelerators with data and integrate the results for input and output sizes beyond the aggregate memory capacity of the available accelerators.
    [Show full text]