Author: Michael Klinefelter
Email: MK296@nau.edu
In talking with a number of current and previous students in this course, there appear to be a number of math terms which are widely used but not very well understood. We often hear of "Group" or "Field" and have a general notion of what these terms mean, but formal definitions escape us. We will dive into some of those terms here, as well as cover some basic concepts in proof writing. These topics are typically covered in courses such as mathematical analysis (real, complex, functional, etc.) and abstract algebra.
First we need to define a binary operation:
Let G be a set. A Binary Operation on G is a function that assigns each ordered pair of elements of G an element of G. Addition, multiplication, subtraction, etc. are all examples of binary operations. That is, they take two elements, do something to them, and get an element from the same set. A binary operation is a mapping G⋅G→G
A Group is then defined as:
Let G be a set together with a binary operation that assigns each ordered pair (a,b) of elements of G an element in G denoted by ab. We say G is a Group under this operation if the following three properties are satisfied:
Examples: Under the binary operation of addition, the set of integers, rational numbers, and real numbers are all groups. In each case, 0 is the identity element, and the inverse of an element a is simply -a.
Fields form the foundational mathematical domains upon which most engineering applications rely on. Nearly all of the math learned up to this point in your education relies on centuries of work in mathematical analysis on or involving fields, including calculus and linear algebra. Formally, a field is a commutative ring with unity in which every nonzero element is a unit. This definition, however, is not very useful without a background in abstract algebra. Broken down, a field can be defined as a set F together with two binary operations (usually addition and multiplication) with the following properties:
These nine properties are known as the field axioms, from which nearly all mathematical properties that you have learned from highschool on can be derived.
Common examples of fields used in engineering are the rational number, the real numbers, the complex number, and GF(2) or the binary field. Fields range greatly in 'size' with the binary field only having two elements, to the rational numbers which are countably infinite, to the reals which are uncountable.
Because the real numbers tend to come up quite a bit in engineering, we formally define them here. In addition to the nine field axioms above, the real numbers are well ordered. For a field to contain an order structure, the following must be true:
Additionally the real numbers are Dedekind complete, which is an additional property on the order structure. This is called a well-ordered structure , which is to say: Given a non-empty subset G of F, which has an upper bound IN F, there exists a least upper bound, which must also be in F.
This property is what separates the rational numbers from the real numbers and is one of many equivalent definitions of the irrational numbers. Irrational numbers can be thought of as the limit of a sequence of rational numbers. This is, in-fact, what we are doing when we write out the decimal approximation of an irrational number. We create a sequence of powers of ten which approach the irrational number. The combined properties above form the real numbers, or a well-ordered field. It is important to note that for ANY two well-order fields, there exists a unique isomorphism (one to one and onto relationship) between them, and they can thus be thought of as the same set.
There are a number of different methods for solving mathematical proofs. Here is are a few common methods with simple examples.
Perhaps the most common type of proof. Given a statement A Implies B we take A and theorems which we have at our disposal and through manipulation of A, we end up at B. Example:
Prove (−1)2=1.
Proof: 1+−(1)=0
Proof by Contradiction assumes the negation of the statement, then from there shows (often directly) that the statement cannot be true. Example: Prove for all real numbers x and y, if x≠y,x>0,y>0, then xy+yx>2. Proof: Assume the negation. Let x≠y,x>0,y>0 and xy+yx≤2. Then x2y+y2<2xy
Proof by contraposition takes a statement A implies B and attempts to prove the contrapositive. The contrapositive of A implies B is Not B implies Not A. If A implies B is true, then Not B implies Not A is always true. Think of the statement "All humans are mammals," which is clearly true. The contrapositive "nonmammals are not humans" is also true. Here is a mathematical example: Prove that if x2 is even, then x is even.
Proof: The contrapositive of the above statement is: If x is not even, then x2 is not even.
If x is not even, then x is odd by definition. The product of two odd numbers is odd, thus x2=x⋅x is odd. Thus x2 is not even, proving our statement. Thus we can infer the original statement to be true.
Proof by induction is useful for showing that a statement is true for any infinite set of natural numbers (note that transfinite induction exists, but is outside the scope of most engineering proofs). The proofs involve proving a base case to be true (usually n=0 or n=1) then showing for and k≥0 if P(k) holds, then P(k+1) holds. An example: Prove that the sum of n natural numbers is n(n+1)2.
Proof: Base Case n=0: The base case clearly holds 0=0(0+1)2=0.
Inductive Step: Assume the statement is true for any k≥0. We must show that the statement holds for k+1. From the statement 0+1+...+k=k(k+1)2