Directed Graphs

Total Page:16

File Type:pdf, Size:1020Kb

Directed Graphs Swarthmore College Works Mathematics & Statistics Faculty Works Mathematics & Statistics 2000 Directed Graphs Stephen B. Maurer , '67 Swarthmore College, [email protected] Follow this and additional works at: https://works.swarthmore.edu/fac-math-stat Part of the Discrete Mathematics and Combinatorics Commons Let us know how access to these works benefits ouy Recommended Citation Stephen B. Maurer , '67. (2000). "Directed Graphs". Handbook Of Discrete Mathematics. 526-539. https://works.swarthmore.edu/fac-math-stat/109 This work is brought to you for free by Swarthmore College Libraries' Works. It has been accepted for inclusion in Mathematics & Statistics Faculty Works by an authorized administrator of Works. For more information, please contact [email protected]. 526 Chapters GRAPH THEORY 8.2.1 ATTRIBUTES OF A GRAPH MODEL Definitions: A mathematical representation of a physical or behavioral phenomenon is a corre­ spondence between the parts and processes of that phenomenon and a mathematical system of objects and functions. A model of a physical or behavioral phenomenon is the mathematical object or function assigned to that phenomenon under a mathematical representation. Modeling is the mathematical activity of designing models and comprehensive math­ ematical representations of physical and behavioral phenomena. A graph model is a mathematical representation that involves a graph. Examples: 1. Table 1 gives many examples of graph models. Each example states what the vertices and edges (or arcs) represent and where in the Handbook details on the application can be found. 8.3 DIRECTED GRAPHS Assigning directions to the edges of a graph greatly enhances modeling capability, and is natural whenever order is important, e.g., in a hierarchical structure or a one-way road system. Also, any graph may be viewed as a digraph, by replacing each edge with two directed edges, one in each direction. Many graph problems are best solved as special cases of digraph problems, for instance, finding shortest paths, maximum flows, and connectivity. 8.3.1 DIGRAPH MODELS AND REPRESENTATIONS Most graph terminology applies equally well to digraphs, e.g., subgraph, self-loop, bi­ partite, isomorphic, empty. The definitions below are special to digraphs or take on a somewhat different meaning for digraphs. In context, where it is clear that only di­ graphs are being discussed, “directedness” is often an implicit attribute of an “edge”, “path”, and other terms. Definitions: A directed graph, or digraph, consists of: • a set V, whose elements are called vertices, • a set E, whose elements are called directed edges or arcs, and • an incidence function that assigns to each edge a tail and a head. The tail of an arc is the vertex it leaves, and the head is the vertex it enters. A strict digraph has no self-loops or multi-arcs. The underlying graph of a digraph is the graph obtained from the digraph by replacing every directed edge by an undirected edge. Section 8.3 DIRECTED GRAPHS 527 Table 1 Directory of graph models. subject area vertex attributes and meaning r ^ rGi€r6nc6 and application edge/arc attributes and meaning computer programming vertex labels are program steps §8.1.1 flowcharts edge directions show flow social organization vertices are persons §8.1.1 social networks edges represent interactions civil engineering vertices are road intersections §8.1.1, road networks edges are roads §8.3.1 operations research vertices are activities §8.3.1 scheduling arcs show operational precedence sociology vertices are individuals §8.3.1 hierarchical dominance arcs show who reports to whom computer programming vertices are subprograms §8.3.1 subprogram calling diagram arcs show calling direction ecology vertices are species §8.3.1 food webs arcs show who eats whom operations research vertices are activities to be scheduled §8.3.1, scheduling edges are activity conflicts §8.6.1 genealogy vertices are family members §8.3.1 “family trees” arcs show parenthood set theory vertices are elements §8.3.1 binary relations arcs show relatedness probabilistic analysis vertices are process states §8.3.2 Markov models edges are state transitions traffic control vertices are intersection §8.3.3 assigning one-way streets edges are streets partially ordered sets vertices are elements §8.3.4 Hasse diagrams arcs show covering relation computer engineering vertices are computational nodes §8.4.2 communications networks arcs are communications links operations research vertices are supply and demand nodes §8.4.2 transportation networks arcs are supply lines walking tours vertices are land masses §8.4.3 Seven Bridges of Konigsberg edges are bridges postal delivery routing vertices are street intersections §8.4.3 Chinese Postman Problem edges are streets information theory vertices are binary strings §8.4.4 Gray codes edges are single-bit changes radio broadcasting vertices are broadcast stations §8.6.1 assignment of frequencies edges are potential interference chemistry vertices are chemicals §8.6.1 preventing explosions edges are co-combustibility 528 Chapters GRAPH THEORY vertex attributes and meaning subject area reference and application edge/arc attributes and meaning cartography regions are countries §8.6.4 map-coloring edges are borders highway construction vertices are road intersections §8.7.1 avoiding overcrossings edges are roads electrical network boards vertices are circuit components §8.7.1 avoiding insulation edges are wires VLSI computer chips vertices are circuit components §8.7.4 minimizing layering edges are wires information management vertices are data records §17.1.4 binary search trees edges are decisions computer operating systems vertices are prioritized jobs §17.1.5 priority trees edges are priority relations physical chemistry vertices are atoms §9.3.2 counting isomers edges are molecular bonds network optimization edges are connections §10.1.1 min-cost spanning trees edge-labels are costs bipartite matching parts are people and jobs §10.2.2 personnel assignment edges are job-capabilities network optimization vertices are locations §10.3.1 shortest path edge-labels are distances traveling salesman routing vertices are locations §10.7.1 shortest complete tour edge-labels are distances The out-degree of vertex v, denoted <5+(u), is the number of arcs with tail at v. The in-degree of vertex v, denoted <5“(u), is the number of arcs with head at v. A digraph D is transitive if whenever it contains an arc from utov and an arc from v to w, it also contains an arc from u to w. The adjacency matrix Ad of a digraph D is Ad = [ffltj]) where Cy = number of arcs from Vi to vj. The incidence matrix Md of a digraph D with no self-loops is Md = [6»j], where -t-1, if Ui is the tail of ej but not the head {-1, if Vi is the head of Cj but not the tail 0, otherwise. There is no standard convention for self-loops. Facts: 1. Strict-digraph terminology: In a context focusing primarily on strict digraphs, there is often a different terminological convention: • “digraph” refers to a strict digraph; • a directed graph with multi-arcs is called a multidigraph; • a directed graph with self-loops is called a pseudodigraph; • an arc with tail u and head v is designated uv. Section 8.3 DIRECTED GRAPHS 529 2. Alternative “path” terminology: There is an alternative convention in which a (directed) “path” may use vertices and arcs more than once, but an “elementary path” does not repeat arcs, and a “simple path” does not repeat vertices (and, hence, does not repeat arcs either). See §8.3.2. 3. The incidence structure of a digraph is frequently represented by an arc list, in which each arc is represented by an ordered pair uv, where u is its tail and v is its head. For each arc with tail u and head v, there is a separate entry, so that uv occurs as often as the number of such arcs. A list of the isolated vertices plus such an arc list completely specifies a digraph. 4. Another common specification of a digraph is the lists-of-neighbors representation. For each vertex u, there is a corresponding row, which has as an entry the head of each arc whose tail is u. Thus a vertex v occurs in that row as many times as there are arcs from u to V. 5. The incidence matrix is another common way to represent a digraph. Since all but one or two of the entries in every column are zero, the incidence matrix is a highly inefficient form of representation. 6. The adjacency matrix is also a common way to specify a digraph in some contexts when there is no reason to identify the arcs by name. 7. A digraph can be represented by a 2 x \E\ incidence table in which the tail and head of each arc e appear in column e. Direction on an arc can be indicated by a convention as to whether tail or head appears in the first row, which requires swapping the two column entries if the direction is changed. Alternatively, direction can be indicated by marking one of the two entries in each column as the head, and then moving the marker if the direction changes. 8. A row-sum in a directed adjacency matrix equals the out-degree of the corresponding vertex. A column-sum equals the in-degree. 9. In any digraph, the sum of the in-degrees, the sum of the out-degrees, and the number of edges are all equal to each other; i.e., <^^(^) = l-^l- Examples; 1. The following arc list, incidence table, list-of-neighbors, and adjacency matrix all represent the digraph G. ^5 incidence table: arc list: ei 62 63 64 65 66 67 uv, vv, vw, XW, XW, UX, XU U V V X X U X VV w W w X u 530 Chapters GRAPH THEORY u V w X ' u : v,x u /O 1 0 1\ V : v,w 0 1 1 0 lists-of-neighbors; adjacency matrix: ^V w : 0 ► 0 0 0 0 X 0 2 0/ .
Recommended publications
  • What's in a Name? the Matrix As an Introduction to Mathematics
    St. John Fisher College Fisher Digital Publications Mathematical and Computing Sciences Faculty/Staff Publications Mathematical and Computing Sciences 9-2008 What's in a Name? The Matrix as an Introduction to Mathematics Kris H. Green St. John Fisher College, [email protected] Follow this and additional works at: https://fisherpub.sjfc.edu/math_facpub Part of the Mathematics Commons How has open access to Fisher Digital Publications benefited ou?y Publication Information Green, Kris H. (2008). "What's in a Name? The Matrix as an Introduction to Mathematics." Math Horizons 16.1, 18-21. Please note that the Publication Information provides general citation information and may not be appropriate for your discipline. To receive help in creating a citation based on your discipline, please visit http://libguides.sjfc.edu/citations. This document is posted at https://fisherpub.sjfc.edu/math_facpub/12 and is brought to you for free and open access by Fisher Digital Publications at St. John Fisher College. For more information, please contact [email protected]. What's in a Name? The Matrix as an Introduction to Mathematics Abstract In lieu of an abstract, here is the article's first paragraph: In my classes on the nature of scientific thought, I have often used the movie The Matrix to illustrate the nature of evidence and how it shapes the reality we perceive (or think we perceive). As a mathematician, I usually field questions elatedr to the movie whenever the subject of linear algebra arises, since this field is the study of matrices and their properties. So it is natural to ask, why does the movie title reference a mathematical object? Disciplines Mathematics Comments Article copyright 2008 by Math Horizons.
    [Show full text]
  • The Matrix As an Introduction to Mathematics
    St. John Fisher College Fisher Digital Publications Mathematical and Computing Sciences Faculty/Staff Publications Mathematical and Computing Sciences 2012 What's in a Name? The Matrix as an Introduction to Mathematics Kris H. Green St. John Fisher College, [email protected] Follow this and additional works at: https://fisherpub.sjfc.edu/math_facpub Part of the Mathematics Commons How has open access to Fisher Digital Publications benefited ou?y Publication Information Green, Kris H. (2012). "What's in a Name? The Matrix as an Introduction to Mathematics." Mathematics in Popular Culture: Essays on Appearances in Film, Fiction, Games, Television and Other Media , 44-54. Please note that the Publication Information provides general citation information and may not be appropriate for your discipline. To receive help in creating a citation based on your discipline, please visit http://libguides.sjfc.edu/citations. This document is posted at https://fisherpub.sjfc.edu/math_facpub/18 and is brought to you for free and open access by Fisher Digital Publications at St. John Fisher College. For more information, please contact [email protected]. What's in a Name? The Matrix as an Introduction to Mathematics Abstract In my classes on the nature of scientific thought, I have often used the movie The Matrix (1999) to illustrate how evidence shapes the reality we perceive (or think we perceive). As a mathematician and self-confessed science fiction fan, I usually field questionselated r to the movie whenever the subject of linear algebra arises, since this field is the study of matrices and their properties. So it is natural to ask, why does the movie title reference a mathematical object? Of course, there are many possible explanations for this, each of which probably contributed a little to the naming decision.
    [Show full text]
  • Math Object Identifiers – Towards Research Data in Mathematics
    Math Object Identifiers – Towards Research Data in Mathematics Michael Kohlhase Computer Science, FAU Erlangen-N¨urnberg Abstract. We propose to develop a system of “Math Object Identi- fiers” (MOIs: digital object identifiers for mathematical concepts, ob- jects, and models) and a process of registering them. These envisioned MOIs constitute a very lightweight form of semantic annotation that can support many knowledge-based workflows in mathematics, e.g. clas- sification of articles via the objects mentioned or object-based search. In essence MOIs are an enabling technology for Linked Open Data for mathematics and thus makes (parts of) the mathematical literature into mathematical research data. 1 Introduction The last years have seen a surge in interest in scaling computer support in scientific research by preserving, making accessible, and managing research data. For most subjects, research data consist in measurement or simulation data about the objects of study, ranging from subatomic particles via weather systems to galaxy clusters. Mathematics has largely been left untouched by this trend, since the objects of study – mathematical concepts, objects, and models – are by and large ab- stract and their properties and relations apply whole classes of objects. There are some exceptions to this, concrete integer sequences, finite groups, or ℓ-functions and modular form are collected and catalogued in mathematical data bases like the OEIS (Online Encyclopedia of Integer Sequences) [Inc; Slo12], the GAP Group libraries [GAP, Chap. 50], or the LMFDB (ℓ-Functions and Modular Forms Data Base) [LMFDB; Cre16]. Abstract mathematical structures like groups, manifolds, or probability dis- tributions can formalized – usually by definitions – in logical systems, and their relations expressed in form of theorems which can be proved in the logical sys- tems as well.
    [Show full text]
  • Strong Subgraph Connectivity of Digraphs: a Survey
    Strong Subgraph Connectivity of Digraphs: A Survey Yuefang Sun1 and Gregory Gutin2 1 Department of Mathematics, Shaoxing University Zhejiang 312000, P. R. China, [email protected] 2 School of Computer Science and Mathematics Royal Holloway, University of London Egham, Surrey, TW20 0EX, UK, [email protected] Abstract In this survey we overview known results on the strong subgraph k- connectivity and strong subgraph k-arc-connectivity of digraphs. After an introductory section, the paper is divided into four sections: basic results, algorithms and complexity, sharp bounds for strong subgraph k-(arc-)connectivity, minimally strong subgraph (k,ℓ)-(arc-) connected digraphs. This survey contains several conjectures and open problems for further study. Keywords: Strong subgraph k-connectivity; Strong subgraph k-arc- connectivity; Subdigraph packing; Directed q-linkage; Directed weak q-linkage; Semicomplete digraphs; Symmetric digraphs; Generalized k- connectivity; Generalized k-edge-connectivity. AMS subject classification (2010): 05C20, 05C35, 05C40, 05C70, 05C75, 05C76, 05C85, 68Q25, 68R10. 1 Introduction arXiv:1808.02740v1 [cs.DM] 8 Aug 2018 The generalized k-connectivity κk(G) of a graph G = (V, E) was intro- duced by Hager [14] in 1985 (2 ≤ k ≤ |V |). For a graph G = (V, E) and a set S ⊆ V of at least two vertices, an S-Steiner tree or, simply, an S-tree is a subgraph T of G which is a tree with S ⊆ V (T ). Two S-trees T1 and T2 are said to be edge-disjoint if E(T1) ∩ E(T2)= ∅. Two edge-disjoint S-trees T1 and T2 are said to be internally disjoint if V (T1) ∩ V (T2)= S.
    [Show full text]
  • 1.3 Matrices and Matrix Operations 1.3.1 De…Nitions and Notation Matrices Are Yet Another Mathematical Object
    20 CHAPTER 1. SYSTEMS OF LINEAR EQUATIONS AND MATRICES 1.3 Matrices and Matrix Operations 1.3.1 De…nitions and Notation Matrices are yet another mathematical object. Learning about matrices means learning what they are, how they are represented, the types of operations which can be performed on them, their properties and …nally their applications. De…nition 50 (matrix) 1. A matrix is a rectangular array of numbers. in which not only the value of the number is important but also its position in the array. 2. The numbers in the array are called the entries of the matrix. 3. The size of the matrix is described by the number of its rows and columns (always in this order). An m n matrix is a matrix which has m rows and n columns. 4. The elements (or the entries) of a matrix are generally enclosed in brack- ets, double-subscripting is used to index the elements. The …rst subscript always denote the row position, the second denotes the column position. For example a11 a12 ::: a1n a21 a22 ::: a2n A = 2 ::: ::: ::: ::: 3 (1.5) 6 ::: ::: ::: ::: 7 6 7 6 am1 am2 ::: amn 7 6 7 =4 [aij] , i = 1; 2; :::; m, j =5 1; 2; :::; n (1.6) Enclosing the general element aij in square brackets is another way of representing a matrix A . 5. When m = n , the matrix is said to be a square matrix. 6. The main diagonal in a square matrix contains the elements a11; a22; a33; ::: 7. A matrix is said to be upper triangular if all its entries below the main diagonal are 0.
    [Show full text]
  • 1 Sets and Set Notation. Definition 1 (Naive Definition of a Set)
    LINEAR ALGEBRA MATH 2700.006 SPRING 2013 (COHEN) LECTURE NOTES 1 Sets and Set Notation. Definition 1 (Naive Definition of a Set). A set is any collection of objects, called the elements of that set. We will most often name sets using capital letters, like A, B, X, Y , etc., while the elements of a set will usually be given lower-case letters, like x, y, z, v, etc. Two sets X and Y are called equal if X and Y consist of exactly the same elements. In this case we write X = Y . Example 1 (Examples of Sets). (1) Let X be the collection of all integers greater than or equal to 5 and strictly less than 10. Then X is a set, and we may write: X = f5; 6; 7; 8; 9g The above notation is an example of a set being described explicitly, i.e. just by listing out all of its elements. The set brackets {· · ·} indicate that we are talking about a set and not a number, sequence, or other mathematical object. (2) Let E be the set of all even natural numbers. We may write: E = f0; 2; 4; 6; 8; :::g This is an example of an explicity described set with infinitely many elements. The ellipsis (:::) in the above notation is used somewhat informally, but in this case its meaning, that we should \continue counting forever," is clear from the context. (3) Let Y be the collection of all real numbers greater than or equal to 5 and strictly less than 10. Recalling notation from previous math courses, we may write: Y = [5; 10) This is an example of using interval notation to describe a set.
    [Show full text]
  • Vector Spaces
    Vector spaces The vector spaces Rn, properties of vectors, and generalizing - introduction Now that you have a grounding in working with vectors in concrete form, we go abstract again. Here’s the plan: (1) The set of all vectors of a given length n has operations of addition and scalar multiplication on it. (2) Vector addition and scalar multiplication have certain properties (which we’ve proven already) (3) We say that the set of vectors of length n with these operations form a vector space Rn (3) So let’s take any mathematical object (m × n matrix, continuous function, discontinuous function, integrable function) and define operations that we’ll call “addition” and “scalar multiplication” on that object. If the set of those objects satisfies all the same properties that vectors do ... we’ll call them ... I know ... we’ll call them vectors, and say that they form a vector space. Functions can be vectors! Matrices can be vectors! (4) Why stop there? You know the dot product? Of two vectors? That had some properties, which were proven for vectors of length n? If we can define a function on our other “vectors” (matrices! continuous functions!) that has the same properties ... we’ll call it a dot product too. Actually, the more general term is inner product. (5) Finally, vector norms (magnitudes). Have properties. Which were proven for vectors of length n.So,ifwecan define functions on our other “vectors” that have the same properties ... those are norms, too. In fact, we can even define other norms on regular vectors in Rn - there is more than one way to measure the length of an vector.
    [Show full text]
  • Shattering, Graph Orientations, and Connectivity
    Shattering, Graph Orientations, and Connectivity [Extended Abstract] László Kozma Shay Moran Saarland University Max Planck Institute for Informatics Saarbrücken, Germany Saarbrücken, Germany [email protected] [email protected] ABSTRACT ing orientations with forbidden subgraphs. These problems We present a connection between two seemingly disparate have close ties with the theory of random graphs. An exam- fields: VC-theory and graph theory. This connection yields ple of work of this type is the paper of Alon and Yuster [4], natural correspondences between fundamental concepts in concerned with the number of orientations that do not con- VC-theory, such as shattering and VC-dimension, and well- tain a copy of a fixed tournament. studied concepts of graph theory related to connectivity, combinatorial optimization, forbidden subgraphs, and oth- In this paper we prove statements concerning properties of ers. orientations and subgraphs of a given graph by introducing a connection between VC-theory and graph theory. The In one direction, we use this connection to derive results following are a few examples of the statements that we prove: in graph theory. Our main tool is a generalization of the Sauer-Shelah Lemma [30, 10, 12]. Using this tool we obtain 1. Let G be a graph. Then: a series of inequalities and equalities related to properties of orientations of a graph. Some of these results appear to be the number the number the number of connected of strong of 2-edge- new, for others we give new and simple proofs. ≥ ≥ subgraphs orientations connected In the other direction, we present new illustrative examples of G of G subgraphs of G.
    [Show full text]
  • Characterizing Levels of Reasoning in Graph Theory
    EURASIA Journal of Mathematics, Science and Technology Education, 2021, 17(8), em1990 ISSN:1305-8223 (online) OPEN ACCESS Research Paper https://doi.org/10.29333/ejmste/11020 Characterizing Levels of Reasoning in Graph Theory Antonio González 1*, Inés Gallego-Sánchez 1, José María Gavilán-Izquierdo 1, María Luz Puertas 2 1 Department of Didactics of Mathematics, Universidad de Sevilla, SPAIN 2 Department of Mathematics, Universidad de Almería, SPAIN Received 5 February 2021 ▪ Accepted 8 April 2021 Abstract This work provides a characterization of the learning of graph theory through the lens of the van Hiele model. For this purpose, we perform a theoretical analysis structured through the processes of reasoning that students activate when solving graph theory problems: recognition, use and formulation of definitions, classification, and proof. We thus obtain four levels of reasoning: an initial level of visual character in which students perceive graphs as a whole; a second level, analytical in nature in which students distinguish parts and properties of graphs; a pre-formal level in which students can interrelate properties; and a formal level in which graphs are handled as abstract mathematical objects. Our results, which are supported by a review of the literature on the teaching and learning of graph theory, might be very helpful to design efficient data collection instruments for empirical studies aiming to analyze students’ thinking in this field of mathematics. Keywords: levels of reasoning, van Hiele model, processes of reasoning, graph theory disciplines: chemistry (Bruckler & Stilinović, 2008), INTRODUCTION physics (Toscano, Stella, & Milotti, 2015), or computer The community of researchers in mathematics science (Kasyanov, 2001).
    [Show full text]
  • One-Way Trail Orientations
    One-wasy trail orientation Aamand, Anders; Hjuler, Niklas; Holm, Jacob; Rotenberg, Eva Published in: 45th International Colloquium on Automata, Languages, and Programming, ICALP 2018 DOI: 10.4230/LIPIcs.ICALP.2018.6 Publication date: 2018 Document version Publisher's PDF, also known as Version of record Document license: CC BY Citation for published version (APA): Aamand, A., Hjuler, N., Holm, J., & Rotenberg, E. (2018). One-wasy trail orientation. In C. Kaklamanis, D. Marx, I. Chatzigiannakis, & D. Sannella (Eds.), 45th International Colloquium on Automata, Languages, and Programming, ICALP 2018 [6] Schloss Dagstuhl--Leibniz-Zentrum fuer Informatik. Leibniz International Proceedings in Informatics, LIPIcs Vol. 107 https://doi.org/10.4230/LIPIcs.ICALP.2018.6 Download date: 26. Sep. 2021 One-Way Trail Orientations Anders Aamand1 University of Copenhagen, Copenhagen, Denmark [email protected] https://orcid.org/0000-0002-0402-0514 Niklas Hjuler2 University of Copenhagen, Copenhagen, Denmark [email protected] https://orcid.org/0000-0002-0815-670X Jacob Holm3 University of Copenhagen, Copenhagen, Denmark [email protected] https://orcid.org/0000-0001-6997-9251 Eva Rotenberg4 Technical University of Denmark, Lyngby, Denmark [email protected] https://orcid.org/0000-0001-5853-7909 Abstract Given a graph, does there exist an orientation of the edges such that the resulting directed graph is strongly connected? Robbins’ theorem [Robbins, Am. Math. Monthly, 1939] asserts that such an orientation exists if and only if the graph is 2-edge connected. A natural extension of this problem is the following: Suppose that the edges of the graph are partitioned into trails. Can the trails be oriented consistently such that the resulting directed graph is strongly connected? We show that 2-edge connectivity is again a sufficient condition and we provide a linear time algorithm for finding such an orientation.
    [Show full text]
  • ABSTRACTION in MATHEMATICS and MATHEMATICS LEARNING Michael Mitchelmore Paul White Macquarie University Australian Catholic University
    ABSTRACTION IN MATHEMATICS AND MATHEMATICS LEARNING Michael Mitchelmore Paul White Macquarie University Australian Catholic University It is claimed that, since mathematics is essentially a self-contained system, mathematical objects may best be described as abstract-apart. On the other hand, fundamental mathematical ideas are closely related to the real world and their learning involves empirical concepts. These concepts may be called abstract-general because they embody general properties of the real world. A discussion of the relationship between abstract-apart objects and abstract-general concepts leads to the conclusion that a key component in learning about fundamental mathematical objects is the formalisation of empirical concepts. A model of the relationship between mathematics and mathematics learning is presented which also includes more advanced mathematical objects. This paper was largely stimulated by the Research Forum on abstraction held at the 26th international conference of PME. In the following, a notation like [F105] will indicate page 105 of the Forum report (Boero et al., 2002). At the Forum, Gray and Tall; Schwarz, Hershkowitz, and Dreyfus; and Gravemeier presented three theories of abstraction, and Sierpinska and Boero reacted. Our analysis indicates that two different contexts for abstraction were discussed at the Forum: abstraction in mathematics and abstraction in mathematics learning. However, the Forum did not include a further meaning of abstraction which we believe is important in the learning of mathematics: The formation of concepts by empirical abstraction from physical and social experience. We shall argue that fundamental mathematical ideas are formalisations of such concepts. The aim of this paper is to contrast abstraction in mathematics with empirical abstraction in mathematics learning.
    [Show full text]
  • Chapter 15 Matrices and Vectors
    Samenvatting Essential Mathematics for Economics Analysis 14-15 Chapter 15 Matrices and Vectors Matrices A system of equations is consistent if it has at least one solution. When the system has no solutions at all, then it is called inconsistent. A matrix is a rectangular array of numbers considered as a mathematical object. Matrices are often used to solve systems of equations. When the matrix consists of rows and columns then the matrix is said to have the order . All the numbers in a matrix are called elements or entries. If then the matrix is called a square matrix. The main diagonal runs from the top left to the bottom right and are the elements A matrix with only one row, or only one column, is called a vector . And we can distinguish between a row vector and a column vector. A vector is usually denoted by a bold letter . One can transform a system of equations into a matrix or order the coefficients of system in a matrix. This system can be written, now in short form, as: . Matrix Operations Two matrices and are said to be equal if all , or in words, if they have the same order and if all corresponding entries are equal. Otherwise they are not equal and we write . The reasoning for addition and multiplication by a constant is straightforward. 25 Samenvatting Essential Mathematics for Economics Analysis 14-15 The rules that are related to these two operations are: • • • • • • Matrix Multiplication For multiplication of two matrices, suppose that and . Then the product is the matrix .
    [Show full text]