Abstract algebra/Sets and Compositions

From testwiki
Jump to navigation Jump to search

A set is a grouping of values, and are generally denoted with upper-case letters. For instance, let's say that A is the set of all first names that start with the letter 'A'. From this definition, we can see that "Andrew" is a member of set A, but "Michael" is not.

Sets

Common Sets

Here are some of the common sets:

: The Natural Numbers : The Integers : The Rational Numbers : The Real Numbers : The Complex Numbers

The Natural Numbers are the set of non-negative integers {0,1,2,3,4,}. The Integers are all the natural numbers, and their negative counterparts {,2,1,0,1,2,}. The Rational numbers are all the numbers that can be formed as a fraction of two integers. The Real numbers include the rational numbers, and also includes all the numbers that cannot be formed as a ratio of two integers. The Complex numbers are all the numbers that involve the imaginary number, i. Notice that C can contain numbers that are imaginary (no real part), real (no imaginary part) and complex (real and imaginary parts).

Set Notation

Frequently, it is required that we define a set by a specific mathematical relationship. For instance, we can say that we want to define the set of all the even integers. Since is the set notation for integers, we can say:

{x:x mod 2=0}

In English, this statement says "All x in set such that x modulo 2 equals zero". Or, if we are not familiar with the modulo operation, it is perfectly acceptable to use plain English when defining our set:

{x:x is even}

The colon (:) here is read as "such that". This notation will come up a lot in the rest of this book, so it is important for the reader to familiarize themselves with this.

Cartesian Product

A cartesian product between two sets shows the domains of two or more variables. For instance, if we have the variables x and y, and the sets A and B, we can use the cartesian product to show the domains of x and y in terms of A and B:

A×B={x,y:xA,yB}

Compositions

Compositions are operations on a set that act on numbers of the set, and return a value that is in that same set.

For instance, addition between two integers produces an integer result. Therefore addition is a composition in the integers. Whereas division of integers is an example of an operation that is not a composition, since 1/2 is not an integer.

If we have a set A, we say that a composition acts on A×A and produces a result in A. This is also known as closure.

Associativity

A composition Δ is said to be associative if:

(AΔB)ΔC=AΔ(BΔC)

For instance, the addition operation is an associative operation over the integers, Z:

(1+2)+3=6=1+(2+3)

Notice however, that subtraction is not associative:

(12)3=4,1(23)=2

Commutativity

A composition Δ is said to be commutative if:

AΔB=BΔA

For instance, multiplication is commutative because:

2×3=6=3×2

Notice that division is not commutative:

2÷3=23,3÷2=32

Neutral Element

A Neutral Element (or Identity) is an item in E such that a composition in E × E into E returns the other operand. For instance, say that we have a composition Δ, a neutral element eE, and a non-neutral element xE. If Δ is commutative, we have the following relation:

eΔx=xΔe=x

For instance, in addition, the neutral element is 0, because 1 + 0 = 1. Also notice that in multiplication, 1 is the neutral element, because 1 × 2 = 2.

Each composition may have only one neutral element, if it has any at all. To prove this fact, let's assume a composition Δ with two neutral elements, e and f:

eΔf=e
fΔe=f

But since e and f are commutative under Δ by definition, we know that e = f.

Ordered Pairs

Template:SideBox

Ordered pairs are artificial constructions where we set two values into a specific order. Let's say that we have two ordered pairs, A and B, comprised of values a1,a2,b1 and b2 respectively:

A=(a1,a2)
B=(b1,b2)

We can say that A = B if and only if

a1=b1 and a2=b2

Functions

A function is essentially a mapping that connects two values, x and y. We use the following notation to show that our function f is a relationship between x and y:

(x,y)f

Notice that x and y form an ordered pair: If we reverse the order of x and y, the relationship will be different (or non-existant). We say that the set of possible values for x is the domain, D, of the function, and the set of possible y values is the Range, R.

In other words, using some of the terms we have discussed already, we say that our function f maps from "D × R into R".

Inverses

If f is a function in D × R, to R, then F-1 is the inverse of f if it is in R × D to D, and the following relationship holds:

(x,y)f,(y,x)F1

Questions

Of the four arithmetic operations, addition, subtraction, multiplication, and division, which are associative? commutative?

Answer

operation associative commutative
Addition yes yes
Multiplication yes yes
Subtraction No No
Division No No