1.3 Matrices and Matrix Operations 1.3.1 De…Nitions and Notation Matrices Are Yet Another Mathematical Object

Total Page:16

File Type:pdf, Size:1020Kb

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. 8. A matrix is said to be lower triangular if all its entries above the main diagonal are 0. 9. If all the entries of a square matrix are zero, except those entries on the main diagonal, then we say the matrix is a diagonal matrix. 10. The n n identity matrix is an n n matrix having ones on the main diagonal, and zeroes everywhere else. It is usually denoted In. 11. We say that two matrices are equal whenever they have the same dimen- sion, and their corresponding entries are equal. 1.3. MATRICES AND MATRIX OPERATIONS 21 De…nition 51 (row and column vectors) Vectors are special forms of ma- trices. 1. A row vector is a vector which has only one row. In other words, it is an 1 n matrix. 2. A column vector is a vector which has only one column. In other words, it is an m 1 matrix. Example 52 Here are some matrices 1 2 1. 5 2:5 is a 3 2 matrix. 2 0 1 3 4 5 1 2 3 2. 3 5 9 is a square (3 3) matrix. 2 p2 0 3 4 5 1 0 0 3. 0 1 0 is the 3 3 identity matrix. 2 0 0 1 3 4 5 1 3 5 4 0 2 6 4 4. 2 3 is a 4 4 upper triangular matrix. 0 0 2 1 6 0 0 0 5 7 6 7 4 5 1 2 5. 2 3 is a column vector. It is also a 4 1 matrix. 3 6 10 7 6 7 4 5 6. 5 0 2 is a row vector. It is also a 1 3 matrix. In the case of a vector, there is no need to use double subscripts. For example, instead of writing A = a11 a12 a13 a14 , we write A = a1 a2 a3 a4 . In the special case that m = n = 1, the matrix is a 1 1 matrix and may be written A = [a11] = [a] = a. In other words, subscripts are not needed. Since the matrix only has one entry, it is the same as a number (also called a scalar). 1.3.2 Operations on Matrices For each operation, we give the conditions under which the operation can be performed. We then explain how the operation is performed. For the remaining of this section, unless speci…ed otherwise, we assume that A = [aij] B = [bij] C = [cij] 22 CHAPTER 1. SYSTEMS OF LINEAR EQUATIONS AND MATRICES Addition and Subtraction Only matrices having the same size can be added or subtracted. The resulting matrix has the same size. To add (subtract) two matrices having the same size, simply add (sub- tract) the corresponding entries. In other words, if C = A + B, then cij = aij + bij. Same for subtraction. Example 53 Examples of matrix addition/subtraction. 1 3 5 2 4 5 1. 2 5 + 4 1 = 6 6 2 0 1 3 3 2 3 3 4 5 1 2 1 1 1 2. 3 4 2 2 2 Cannot be done, the matrices do not have the 2 5 6 3 2 3 3 3 3 4same dimension.5 4 5 Scalar Multiplication This is multiplication of a matrix by a number. This operation can always be done. The result is a matrix of the same size. Simply multiply each entry of the matrix by the number. Example 54 Examples of multiplication of a matrix by a scalar. 1 0 4 0 1. 4 2 1 = 8 4 2 3 10 3 2 12 40 3 4 5 4 5 a a a a 2. 11 12 = 11 12 a21 a22 a21 a22 Multiplication of a Row Vector by a Column Vector The row and column vector must have the same number of elements. This means that if the …rst vector has n entries (that is is a 1 n matrix), then the second vector must also have n entries (that is must be a n 1 matrix). The result is a 1 1 matrix or a scalar. 1.3. MATRICES AND MATRIX OPERATIONS 23 b1 b2 Suppose that A = a1 a2 ::: an and B = 2 3. Then : 6 bn 7 6 7 4 5 AB = a1b1 + a2b2 + :::anbn n = aibi i=1 X You will note that the result is a scalar. Example 55 Examples of multiplication of a row vector by a column vector. 2 1 1. 1 3 5 7 2 3 = [1 2 + 3 1 + 5 5 + 7 10] = 100 5 6 10 7 6 7 4 5 1 2 2. 1 3 5 . This cannot be done, the vectors do not have the same 2 3 3 6 4 7 6 7 number of elements.4 5 Matrix Multiplication Let us assume that A is m p and B is q n. The product of A and B, denoted AB can be performed only if p = q. In other words, the number of columns of the …rst matrix, A must be the same as the number of rows of the second matrix, B. In the case p = q, then AB is a new matrix. Its size is m n. In summary, if we put next to each other the dimensions of the matrices we are trying to multiply, in this case m p and q n, then we see that we can do the multiplication if the inner numbers (pand q) are equal. The size is given by the outer numbers (m and n). Matrix multiplication is a little bit more complicated than the other oper- ations. We explain it by showing how each entry of the resulting matrix is obtained. Let us assume that A = [aij] is m p and B = [bij] is p n. Let C = [cij] = AB. Then, C is a m n matrix. cij is obtained by multiplying the ith row of A by the jth column of B. In other words, p cij = aikbkj, i = 1; 2; :::; m, j = 1; 2; :::; n k=1 X 24 CHAPTER 1. SYSTEMS OF LINEAR EQUATIONS AND MATRICES Remark 56 Because of the condition on the sizes of the matrices, one can see easily that matrix multiplication will not be commutative. For example, if A is 3 4 and B is 4 5 then one can compute AB. Its size will be 3 5. However, BA cannot be computed. Even in cases when both AB and BA can be computed, they are unlikely to be the same. For example 1 2 3 1 1 1 14 14 14 2 3 4 2 2 2 = 20 20 20 2 3 4 5 3 2 3 3 3 3 2 26 26 26 3 4 5 4 5 4 5 but 1 1 1 1 2 3 6 9 12 2 2 2 2 3 4 = 12 18 24 2 3 3 3 3 2 3 4 5 3 2 18 27 36 3 4 5 4 5 4 5 Example 57 Examples of matrix multiplication. 1 2 3 1 1 1 14 14 14 1. 2 3 4 2 2 2 = 20 20 20 2 3 4 5 3 2 3 3 3 3 2 26 26 26 3 4 5 4 9 3 5 4 5 1 2 3 4 4 1 1 0 0 17 3 2. 3 2 1 4 4 2 = 0 1 0 2 1 3 6 3 2 7 1 1 3 2 0 0 1 3 4 4 4 5 4 5 4 5 1 2 3 x x + 2y + 3z 3. 3 2 1 y = 3x + 2y + z 2 1 3 6 3 2 z 3 2 x + 3y + 6z 3 4 5 4 5 4 5 1 1 1 1 2 3 2 2 2 4. 2 3 4 cannot be done (why?) 2 3 3 3 3 2 3 4 5 3 6 4 4 4 7 4 5 6 7 4 5 1 2 3 1 0 0 1 2 3 5.
Recommended publications
  • 2.1 the Algebra of Sets
    Chapter 2 I Abstract Algebra 83 part of abstract algebra, sets are fundamental to all areas of mathematics and we need to establish a precise language for sets. We also explore operations on sets and relations between sets, developing an “algebra of sets” that strongly resembles aspects of the algebra of sentential logic. In addition, as we discussed in chapter 1, a fundamental goal in mathematics is crafting articulate, thorough, convincing, and insightful arguments for the truth of mathematical statements. We continue the development of theorem-proving and proof-writing skills in the context of basic set theory. After exploring the algebra of sets, we study two number systems denoted Zn and U(n) that are closely related to the integers. Our approach is based on a widely used strategy of mathematicians: we work with specific examples and look for general patterns. This study leads to the definition of modified addition and multiplication operations on certain finite subsets of the integers. We isolate key axioms, or properties, that are satisfied by these and many other number systems and then examine number systems that share the “group” properties of the integers. Finally, we consider an application of this mathematics to check digit schemes, which have become increasingly important for the success of business and telecommunications in our technologically based society. Through the study of these topics, we engage in a thorough introduction to abstract algebra from the perspective of the mathematician— working with specific examples to identify key abstract properties common to diverse and interesting mathematical systems. 2.1 The Algebra of Sets Intuitively, a set is a “collection” of objects known as “elements.” But in the early 1900’s, a radical transformation occurred in mathematicians’ understanding of sets when the British philosopher Bertrand Russell identified a fundamental paradox inherent in this intuitive notion of a set (this paradox is discussed in exercises 66–70 at the end of this section).
    [Show full text]
  • The Five Fundamental Operations of Mathematics: Addition, Subtraction
    The five fundamental operations of mathematics: addition, subtraction, multiplication, division, and modular forms Kenneth A. Ribet UC Berkeley Trinity University March 31, 2008 Kenneth A. Ribet Five fundamental operations This talk is about counting, and it’s about solving equations. Counting is a very familiar activity in mathematics. Many universities teach sophomore-level courses on discrete mathematics that turn out to be mostly about counting. For example, we ask our students to find the number of different ways of constituting a bag of a dozen lollipops if there are 5 different flavors. (The answer is 1820, I think.) Kenneth A. Ribet Five fundamental operations Solving equations is even more of a flagship activity for mathematicians. At a mathematics conference at Sundance, Robert Redford told a group of my colleagues “I hope you solve all your equations”! The kind of equations that I like to solve are Diophantine equations. Diophantus of Alexandria (third century AD) was Robert Redford’s kind of mathematician. This “father of algebra” focused on the solution to algebraic equations, especially in contexts where the solutions are constrained to be whole numbers or fractions. Kenneth A. Ribet Five fundamental operations Here’s a typical example. Consider the equation y 2 = x3 + 1. In an algebra or high school class, we might graph this equation in the plane; there’s little challenge. But what if we ask for solutions in integers (i.e., whole numbers)? It is relatively easy to discover the solutions (0; ±1), (−1; 0) and (2; ±3), and Diophantus might have asked if there are any more.
    [Show full text]
  • A Quick Algebra Review
    A Quick Algebra Review 1. Simplifying Expressions 2. Solving Equations 3. Problem Solving 4. Inequalities 5. Absolute Values 6. Linear Equations 7. Systems of Equations 8. Laws of Exponents 9. Quadratics 10. Rationals 11. Radicals Simplifying Expressions An expression is a mathematical “phrase.” Expressions contain numbers and variables, but not an equal sign. An equation has an “equal” sign. For example: Expression: Equation: 5 + 3 5 + 3 = 8 x + 3 x + 3 = 8 (x + 4)(x – 2) (x + 4)(x – 2) = 10 x² + 5x + 6 x² + 5x + 6 = 0 x – 8 x – 8 > 3 When we simplify an expression, we work until there are as few terms as possible. This process makes the expression easier to use, (that’s why it’s called “simplify”). The first thing we want to do when simplifying an expression is to combine like terms. For example: There are many terms to look at! Let’s start with x². There Simplify: are no other terms with x² in them, so we move on. 10x x² + 10x – 6 – 5x + 4 and 5x are like terms, so we add their coefficients = x² + 5x – 6 + 4 together. 10 + (-5) = 5, so we write 5x. -6 and 4 are also = x² + 5x – 2 like terms, so we can combine them to get -2. Isn’t the simplified expression much nicer? Now you try: x² + 5x + 3x² + x³ - 5 + 3 [You should get x³ + 4x² + 5x – 2] Order of Operations PEMDAS – Please Excuse My Dear Aunt Sally, remember that from Algebra class? It tells the order in which we can complete operations when solving an equation.
    [Show full text]
  • 7.2 Binary Operators Closure
    last edited April 19, 2016 7.2 Binary Operators A precise discussion of symmetry benefits from the development of what math- ematicians call a group, which is a special kind of set we have not yet explicitly considered. However, before we define a group and explore its properties, we reconsider several familiar sets and some of their most basic features. Over the last several sections, we have considered many di↵erent kinds of sets. We have considered sets of integers (natural numbers, even numbers, odd numbers), sets of rational numbers, sets of vertices, edges, colors, polyhedra and many others. In many of these examples – though certainly not in all of them – we are familiar with rules that tell us how to combine two elements to form another element. For example, if we are dealing with the natural numbers, we might considered the rules of addition, or the rules of multiplication, both of which tell us how to take two elements of N and combine them to give us a (possibly distinct) third element. This motivates the following definition. Definition 26. Given a set S,abinary operator ? is a rule that takes two elements a, b S and manipulates them to give us a third, not necessarily distinct, element2 a?b. Although the term binary operator might be new to us, we are already familiar with many examples. As hinted to earlier, the rule for adding two numbers to give us a third number is a binary operator on the set of integers, or on the set of rational numbers, or on the set of real numbers.
    [Show full text]
  • 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]
  • Rules for Matrix Operations
    Math 2270 - Lecture 8: Rules for Matrix Operations Dylan Zwick Fall 2012 This lecture covers section 2.4 of the textbook. 1 Matrix Basix Most of this lecture is about formalizing rules and operations that we’ve already been using in the class up to this point. So, it should be mostly a review, but a necessary one. If any of this is new to you please make sure you understand it, as it is the foundation for everything else we’ll be doing in this course! A matrix is a rectangular array of numbers, and an “m by n” matrix, also written rn x n, has rn rows and n columns. We can add two matrices if they are the same shape and size. Addition is termwise. We can also mul tiply any matrix A by a constant c, and this multiplication just multiplies every entry of A by c. For example: /2 3\ /3 5\ /5 8 (34 )+( 10 Hf \i 2) \\2 3) \\3 5 /1 2\ /3 6 3 3 ‘ = 9 12 1 I 1 2 4) \6 12 1 Moving on. Matrix multiplication is more tricky than matrix addition, because it isn’t done termwise. In fact, if two matrices have the same size and shape, it’s not necessarily true that you can multiply them. In fact, it’s only true if that shape is square. In order to multiply two matrices A and B to get AB the number of columns of A must equal the number of rows of B. So, we could not, for example, multiply a 2 x 3 matrix by a 2 x 3 matrix.
    [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]
  • Basic Concepts of Set Theory, Functions and Relations 1. Basic
    Ling 310, adapted from UMass Ling 409, Partee lecture notes March 1, 2006 p. 1 Basic Concepts of Set Theory, Functions and Relations 1. Basic Concepts of Set Theory........................................................................................................................1 1.1. Sets and elements ...................................................................................................................................1 1.2. Specification of sets ...............................................................................................................................2 1.3. Identity and cardinality ..........................................................................................................................3 1.4. Subsets ...................................................................................................................................................4 1.5. Power sets .............................................................................................................................................4 1.6. Operations on sets: union, intersection...................................................................................................4 1.7 More operations on sets: difference, complement...................................................................................5 1.8. Set-theoretic equalities ...........................................................................................................................5 Chapter 2. Relations and Functions ..................................................................................................................6
    [Show full text]
  • Binary Operations
    4-22-2007 Binary Operations Definition. A binary operation on a set X is a function f : X × X → X. In other words, a binary operation takes a pair of elements of X and produces an element of X. It’s customary to use infix notation for binary operations. Thus, rather than write f(a, b) for the binary operation acting on elements a, b ∈ X, you write afb. Since all those letters can get confusing, it’s also customary to use certain symbols — +, ·, ∗ — for binary operations. Thus, f(a, b) becomes (say) a + b or a · b or a ∗ b. Example. Addition is a binary operation on the set Z of integers: For every pair of integers m, n, there corresponds an integer m + n. Multiplication is also a binary operation on the set Z of integers: For every pair of integers m, n, there corresponds an integer m · n. However, division is not a binary operation on the set Z of integers. For example, if I take the pair 3 (3, 0), I can’t perform the operation . A binary operation on a set must be defined for all pairs of elements 0 from the set. Likewise, a ∗ b = (a random number bigger than a or b) does not define a binary operation on Z. In this case, I don’t have a function Z × Z → Z, since the output is ambiguously defined. (Is 3 ∗ 5 equal to 6? Or is it 117?) When a binary operation occurs in mathematics, it usually has properties that make it useful in con- structing abstract structures.
    [Show full text]
  • Binary Operations
    Binary operations 1 Binary operations The essence of algebra is to combine two things and get a third. We make this into a definition: Definition 1.1. Let X be a set. A binary operation on X is a function F : X × X ! X. However, we don't write the value of the function on a pair (a; b) as F (a; b), but rather use some intermediate symbol to denote this value, such as a + b or a · b, often simply abbreviated as ab, or a ◦ b. For the moment, we will often use a ∗ b to denote an arbitrary binary operation. Definition 1.2. A binary structure (X; ∗) is a pair consisting of a set X and a binary operation on X. Example 1.3. The examples are almost too numerous to mention. For example, using +, we have (N; +), (Z; +), (Q; +), (R; +), (C; +), as well as n vector space and matrix examples such as (R ; +) or (Mn;m(R); +). Using n subtraction, we have (Z; −), (Q; −), (R; −), (C; −), (R ; −), (Mn;m(R); −), but not (N; −). For multiplication, we have (N; ·), (Z; ·), (Q; ·), (R; ·), (C; ·). If we define ∗ ∗ ∗ Q = fa 2 Q : a 6= 0g, R = fa 2 R : a 6= 0g, C = fa 2 C : a 6= 0g, ∗ ∗ ∗ then (Q ; ·), (R ; ·), (C ; ·) are also binary structures. But, for example, ∗ (Q ; +) is not a binary structure. Likewise, (U(1); ·) and (µn; ·) are binary structures. In addition there are matrix examples: (Mn(R); ·), (GLn(R); ·), (SLn(R); ·), (On; ·), (SOn; ·). Next, there are function composition examples: for a set X,(XX ; ◦) and (SX ; ◦).
    [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]