7.1 RELATIONS AND THEIR PROPERTIES
|
|
|
- Derrick Watts
- 9 years ago
- Views:
Transcription
1 Section 7.1 Relations and Their Properties RELATIONS AND THEIR PROPERTIES def: A binary relation is a predicate on the cartesian product A B of two sets. Sometimes we say from A to B. CONCEPTUALIZATION and MODELING A binary relation is set-theoretically modeled as a subset of A B. Example 7.1.1: C(, ) capital city of domain = C S cites and states e.g., C(Albany, NY), C(Pierre, SD) Example 7.1.2: less than or equal to domain = R R, where R = real numbers. For instance, π 7.6. Conceptually, one usually regards is capital of and as yes-no oracles on ordered pairs. Their respective models as sets of ordered pairs are useful in representing these relations on a computer.
2 Chapter 7 RELATIONS MORE EXAMPLES Example 7.1.3: E(, ) eats domain = A A, where A = animal species. For instance, E(pythons, rabbits). Example 7.1.4: H(, ) husband of domain = M F (males, females) For instance, H(Jacob, Leah), H(Jacob, Rachel) Example 7.1.5: B(, ) brother of For instance, B(Joseph, Benjamin). GENERALIZATION Relations on products of more than two sets: ternary ( 3-ary ), quarternary ( 4-ary ), etc. See Section 7.2 of Rosen text. Example 7.1.6: R(a, e, y) means that a and e are father and mother, respectively, of child y. Domain = (males, females, persons). Thus, R(Abraham, Sarah, Isaac) is true. N.B. R(Sarah, Abraham, Isaac) is meaningless and R(Isaac, Sarah, Abraham) is false.
3 Section 7.1 Relations and Their Properties ALTERNATIVE MODELS of RELATIONS A binary relation can also be modeled as a list of lists of relatives or as a matrix. Example 7.1.7: The relation Q from the set {1, 2, 3} to the set {A, B, C}, with the orderedpairs model Q = {(1,A), (1,B), (2,C), (3,A), (3,C)} has the lists-of-relatives model 1:A, B, C 2:C 3:A, C and the matrix model A B C
4 Chapter 7 RELATIONS COMPOSITION OF BINARY RELATIONS def: Let Q be arelation from S to T and R a relation from T to U. Their composition Q R is the relation on S U that is true for any pair (s, u) such that ( t T )[Q(s, t) R(t, u)] Remark: Using either the ordered-pairs model or the matrix model often makes the construction of compositions seem easier. Example 7.1.8: Construct Q R, where and Q = {(1,A), (1,B), (2,C), (3,A), (3,C)} R = {(A, x), (A, y), (A, z), (B,w), (B,y)} Using the definition of composition directly, we must consider every pair in the product {1, 2, 3} {w, x, y, z} and decide whether some member of {A, B, C} relates the two coordinates. CONTINUED
5 Section 7.1 Relations and Their Properties Q R 1:A, B, C A : x, y, z 2:C B : w, y 3:A, C C : = Q R 1:w, x, y, z 2: 3:x, y, z A B C A B C = w x y z w x y z def: Let R be arelation on set S. Then the powers of R are defined inductively: R 0 = I (identity relation) R n+1 = R n R
6 Chapter 7 RELATIONS REFLEXIVE PROPERTY of RELATIONS A binary relation R on a set S is reflexive if and only if ( x s)[r(x, x)] Example 7.1.2, continued: domain = R R, where R = real numbers. REFLEXIVE, since ( x R)[x x]. Example 7.1.5, continued: B(, ) brother of NONREFLEXIVE, since B(Joseph, Joseph) is false. Fact. A relation is reflexive if in its lists-ofrelative model, every member of the domain is listed as one of its own relatives. Fact. A relation is reflexive if its matrix model has 1 s down the main diagonal.
7 Section 7.1 Relations and Their Properties SYMMETRY PROPERTY of RELATIONS A binary relation R on a set S is symmetric if and only if ( x, y S)[R(x, y) R(y, x)] Example 7.1.2, continued: domain = R R, where R = real numbers. NONSYMMETRIC, since π 7, but 7 π. Example 7.1.5, continued: B(, ) brother of QUESTION: If George is Bill s brother, does that imply that Bill is George s brother? YES or NO Example 7.1.3, continued: E(, ) eats domain = A A, where A = animal species. There are some symmetric pairs, such as ants and anteaters. Nonetheless, NONSYMMETRIC, since there also exist nonsymmetric pairs.
8 Chapter 7 RELATIONS Fact. A relation is symmetric iff x y if y occurs in the list of relatives of x, then x occurs in the list of relatives of y. Fact. A relation is symmetric iff the relational matrix is symmetric around the main diagonal. Example 7.1.9: Some familial relationships are symmetric: spouse, sibling, cousin, in-law. Notice that none of them implies either an age difference or a gender. Example : Some other familial relationships are non-symmetric: husband, sister, niece, parent. Each of them implies either an age difference or a gender. CLASSROOM EXERCISE Construct a 2-person domain in which step-grandfather-inlaw-hood is symmetric.
9 Section 7.1 Relations and Their Properties ANTISYMMETRY PROPERTY OF RELATIONS A binary relation R is antisymmetric if and only if ( x, y)[r(x, y) R(y, x) x = y] Example 7.1.2, continued: domain = R R, where R = real numbers. ANTISYMMETRIC, since x y y x x = y Example 7.1.5, continued: B(, ) brother of NON-ANTISYMMETRIC Example 7.1.3, continued: M(, ) mother of ANTISYMMETRIC, vacuously. CLASSROOM EXERCISE Let R be arelation that is both symmetric and antisymmetric. Prove that no element of its domain is related to any element other than possibly itself.
10 Chapter 7 RELATIONS TRANSITIVITY PROPERTY OF RELATIONS A binary relation R is transitive if and only if ( x, y, z)[r(x, y) R(y, z) R(x, z)] Example 7.1.1, continued: domain = R R, where R = real numbers. TRANSITIVE, since x y y z x z Example 7.1.2, continued: B(, ) brother of QUESTION: Is your brother s brother your brother? YES or NO Example 7.1.7: M(, ) mother of NONTRANSITIVE, vacuously. Example 7.1.8: ancestor of TRANSITIVE
11 Section 7.1 Relations and Their Properties Prop Let R be arelation on a set S. Then R is transitive if and only if ( n Z + )[R n R] Proof: ( ) R 2 R R is transitive. ( ) mathematical induction.
Lecture 17 : Equivalence and Order Relations DRAFT
CS/Math 240: Introduction to Discrete Mathematics 3/31/2011 Lecture 17 : Equivalence and Order Relations Instructor: Dieter van Melkebeek Scribe: Dalibor Zelený DRAFT Last lecture we introduced the notion
Chapter 3. Cartesian Products and Relations. 3.1 Cartesian Products
Chapter 3 Cartesian Products and Relations The material in this chapter is the first real encounter with abstraction. Relations are very general thing they are a special type of subset. After introducing
Lecture 16 : Relations and Functions DRAFT
CS/Math 240: Introduction to Discrete Mathematics 3/29/2011 Lecture 16 : Relations and Functions Instructor: Dieter van Melkebeek Scribe: Dalibor Zelený DRAFT In Lecture 3, we described a correspondence
Solutions to In-Class Problems Week 4, Mon.
Massachusetts Institute of Technology 6.042J/18.062J, Fall 05: Mathematics for Computer Science September 26 Prof. Albert R. Meyer and Prof. Ronitt Rubinfeld revised September 26, 2005, 1050 minutes Solutions
Discrete Mathematics. Hans Cuypers. October 11, 2007
Hans Cuypers October 11, 2007 1 Contents 1. Relations 4 1.1. Binary relations................................ 4 1.2. Equivalence relations............................. 6 1.3. Relations and Directed Graphs.......................
Arkansas Tech University MATH 4033: Elementary Modern Algebra Dr. Marcel B. Finan
Arkansas Tech University MATH 4033: Elementary Modern Algebra Dr. Marcel B. Finan 3 Binary Operations We are used to addition and multiplication of real numbers. These operations combine two real numbers
MATH 304 Linear Algebra Lecture 9: Subspaces of vector spaces (continued). Span. Spanning set.
MATH 304 Linear Algebra Lecture 9: Subspaces of vector spaces (continued). Span. Spanning set. Vector space A vector space is a set V equipped with two operations, addition V V (x,y) x + y V and scalar
INTRODUCTORY SET THEORY
M.Sc. program in mathematics INTRODUCTORY SET THEORY Katalin Károlyi Department of Applied Analysis, Eötvös Loránd University H-1088 Budapest, Múzeum krt. 6-8. CONTENTS 1. SETS Set, equal sets, subset,
Basic Set Theory. 1. Motivation. Fido Sue. Fred Aristotle Bob. LX 502 - Semantics I September 11, 2008
Basic Set Theory LX 502 - Semantics I September 11, 2008 1. Motivation When you start reading these notes, the first thing you should be asking yourselves is What is Set Theory and why is it relevant?
7 Relations and Functions
7 Relations and Functions In this section, we introduce the concept of relations and functions. Relations A relation R from a set A to a set B is a set of ordered pairs (a, b), where a is a member of A,
Mathematics for Computer Science/Software Engineering. Notes for the course MSM1F3 Dr. R. A. Wilson
Mathematics for Computer Science/Software Engineering Notes for the course MSM1F3 Dr. R. A. Wilson October 1996 Chapter 1 Logic Lecture no. 1. We introduce the concept of a proposition, which is a statement
Application for adoption information: Relative or guardian of adopted person who is deceased or does not have capacity
The purpose of the application for adoption information: is deceased or does not have capacity form This form is for use by a relative or guardian of an adult adopted person to apply for adoption information
Discrete Maths. Philippa Gardner. These lecture notes are based on previous notes by Iain Phillips.
Discrete Maths Philippa Gardner These lecture notes are based on previous notes by Iain Phillips. This short course introduces some basic concepts in discrete mathematics: sets, relations, and functions.
Basic Concepts of Set Theory, Functions and Relations
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
INDIANA DEPARTMENT OF CHILD SERVICES CHILD WELFARE MANUAL. Chapter 5: General Case Management Effective Date: March 1, 2007
INDIANA DEPARTMENT OF CHILD SERVICES CHILD WELFARE MANUAL Chapter 5: General Case Management Effective Date: March 1, 2007 Family Network Diagram Guide Version: 1 Family Network Diagram Instruction Guide
3. Mathematical Induction
3. MATHEMATICAL INDUCTION 83 3. Mathematical Induction 3.1. First Principle of Mathematical Induction. Let P (n) be a predicate with domain of discourse (over) the natural numbers N = {0, 1,,...}. If (1)
Midterm Practice Problems
6.042/8.062J Mathematics for Computer Science October 2, 200 Tom Leighton, Marten van Dijk, and Brooke Cowan Midterm Practice Problems Problem. [0 points] In problem set you showed that the nand operator
3. SETS, FUNCTIONS & RELATIONS
3. SETS, FUNCTIONS & RELATIONS If I see the moon, then the moon sees me 'Cos seeing's symmetric as you can see. If I tell Aunt Maude and Maude tells the nation Then I've told the nation 'cos the gossiping
Page 331, 38.4 Suppose a is a positive integer and p is a prime. Prove that p a if and only if the prime factorization of a contains p.
Page 331, 38.2 Assignment #11 Solutions Factor the following positive integers into primes. a. 25 = 5 2. b. 4200 = 2 3 3 5 2 7. c. 10 10 = 2 10 5 10. d. 19 = 19. e. 1 = 1. Page 331, 38.4 Suppose a is a
Math 223 Abstract Algebra Lecture Notes
Math 223 Abstract Algebra Lecture Notes Steven Tschantz Spring 2001 (Apr. 23 version) Preamble These notes are intended to supplement the lectures and make up for the lack of a textbook for the course
Application for a Parental Order Section 54 Human Fertilisation and Embryology Act 2008
C51 Application for a Parental Order Section 54 Human Fertilisation and Embryology Act 2008 To be completed by the court Name of court Date received by the court Date issued Please complete this form using
MATH10040 Chapter 2: Prime and relatively prime numbers
MATH10040 Chapter 2: Prime and relatively prime numbers Recall the basic definition: 1. Prime numbers Definition 1.1. Recall that a positive integer is said to be prime if it has precisely two positive
Follow your family using census records
Census records are one of the best ways to discover details about your family and how that family changed every 10 years. You ll discover names, addresses, what people did for a living, even which ancestor
Training Handout: New Individual Life Insurance Application
Training Handout: New Individual Life Insurance Application Effective April 1, 2012 AN EASIER FORM TO BETTER SERVE YOU! Starting April 1, 2012 all preneed agents will use the new and improved Individual
Semantics of UML class diagrams
1 Otto-von-Guericke Universität Magdeburg, Germany April 26, 2016 Sets Definition (Set) A set is a collection of objects. The basic relation is membership: x A (x is a member of A) The following operations
CHAPTER 2. Logic. 1. Logic Definitions. Notation: Variables are used to represent propositions. The most common variables used are p, q, and r.
CHAPTER 2 Logic 1. Logic Definitions 1.1. Propositions. Definition 1.1.1. A proposition is a declarative sentence that is either true (denoted either T or 1) or false (denoted either F or 0). Notation:
Cartesian Products and Relations
Cartesian Products and Relations Definition (Cartesian product) If A and B are sets, the Cartesian product of A and B is the set A B = {(a, b) :(a A) and (b B)}. The following points are worth special
Computability Theory
CSC 438F/2404F Notes (S. Cook and T. Pitassi) Fall, 2014 Computability Theory This section is partly inspired by the material in A Course in Mathematical Logic by Bell and Machover, Chap 6, sections 1-10.
So let us begin our quest to find the holy grail of real analysis.
1 Section 5.2 The Complete Ordered Field: Purpose of Section We present an axiomatic description of the real numbers as a complete ordered field. The axioms which describe the arithmetic of the real numbers
GRAPH THEORY LECTURE 4: TREES
GRAPH THEORY LECTURE 4: TREES Abstract. 3.1 presents some standard characterizations and properties of trees. 3.2 presents several different types of trees. 3.7 develops a counting method based on a bijection
6.3 Conditional Probability and Independence
222 CHAPTER 6. PROBABILITY 6.3 Conditional Probability and Independence Conditional Probability Two cubical dice each have a triangle painted on one side, a circle painted on two sides and a square painted
KAN_7 1 + + This declaration form is for you if you are a former Finnish citizen and have lost Finnish citizenship.
KAN_7 1 *1229901* CITIZENSHIP DECLARATION; FORMER FINNISH CITIZEN This declaration form is for you if you are a former Finnish citizen and have lost Finnish citizenship. If you also wish to apply for Finnish
Jacob Marries Rachel
Jacob Marries Rachel Teacher Pep Talk: Jacob, escaping from the wrath of his older brother, Esau, traveled to the home of his mother s relatives. There Jacob, the trickster, who had gotten both Esau s
Paid and Unpaid Labor in Developing Countries: an inequalities in time use approach
Paid and Unpaid Work inequalities 1 Paid and Unpaid Labor in Developing Countries: an inequalities in time use approach Paid and Unpaid Labor in Developing Countries: an inequalities in time use approach
THE BENEFITS OF LIVING DONOR KIDNEY TRANSPLANTATION. feel better knowing
THE BENEFITS OF LIVING DONOR KIDNEY TRANSPLANTATION feel better knowing your choice will help create more memories. Methods of Kidney Donation Kidneys for transplantation are made available through deceased
INCIDENCE-BETWEENNESS GEOMETRY
INCIDENCE-BETWEENNESS GEOMETRY MATH 410, CSUSM. SPRING 2008. PROFESSOR AITKEN This document covers the geometry that can be developed with just the axioms related to incidence and betweenness. The full
5.3 The Cross Product in R 3
53 The Cross Product in R 3 Definition 531 Let u = [u 1, u 2, u 3 ] and v = [v 1, v 2, v 3 ] Then the vector given by [u 2 v 3 u 3 v 2, u 3 v 1 u 1 v 3, u 1 v 2 u 2 v 1 ] is called the cross product (or
8 Divisibility and prime numbers
8 Divisibility and prime numbers 8.1 Divisibility In this short section we extend the concept of a multiple from the natural numbers to the integers. We also summarize several other terms that express
HERCULES OFFSHORE, INC. APPLICATION FOR EMPLOYMENT. Personal Information
APPLICATION FOR EMPLOYMENT Personal Information Date: Social Security Number: - - Name: (Last) (First) (Middle) (Suffix) Address (Number and Street): County Zip City or Parish State Code Country Home Telephone
Cross product and determinants (Sect. 12.4) Two main ways to introduce the cross product
Cross product and determinants (Sect. 12.4) Two main ways to introduce the cross product Geometrical definition Properties Expression in components. Definition in components Properties Geometrical expression.
PROVINCIAL/TERRITORIAL COMPASSIONATE LEAVE LEGISLATION Provinces/Territories with Compassionate Care Leave Legislation
PROVINCIAL/TERRITORIAL COMPASSIONATE LEAVE LEGISLATION Provinces/Territories with Compassionate Care Leave Legislation Almost all of the provinces and territories either had existing labour legislation
Linear Models in STATA and ANOVA
Session 4 Linear Models in STATA and ANOVA Page Strengths of Linear Relationships 4-2 A Note on Non-Linear Relationships 4-4 Multiple Linear Regression 4-5 Removal of Variables 4-8 Independent Samples
Inheritance according to Islamic Sharia Law
Inheritance according to Islamic Sharia Law Mawarith - An Islamic Inheritance Calculation Program Qur'an 4:11 Allah commands you as regards your children (inheritance), To the MALE, a portion equal to
Lemma 5.2. Let S be a set. (1) Let f and g be two permutations of S. Then the composition of f and g is a permutation of S.
Definition 51 Let S be a set bijection f : S S 5 Permutation groups A permutation of S is simply a Lemma 52 Let S be a set (1) Let f and g be two permutations of S Then the composition of f and g is a
(LMCS, p. 317) V.1. First Order Logic. This is the most powerful, most expressive logic that we will examine.
(LMCS, p. 317) V.1 First Order Logic This is the most powerful, most expressive logic that we will examine. Our version of first-order logic will use the following symbols: variables connectives (,,,,
DARKO AFFORDABLE HOUSING SOLUTIONS, LLC 125 E Broadway, P.O. Box 1161 Anadarko, OK 73005 Phone 405-247-1110 Fax 405-247-4955 HOME REHAB
DARKO AFFORDABLE HOUSING SOLUTIONS, LLC 125 E Broadway, P.O. Box 1161 Anadarko, OK 73005 Phone 405-247-1110 Fax 405-247-4955 HOME REHAB PROGRAM DESCRIPTIONS: DAHS Home Rehab Program is to assist the primary
In-year common application form (icaf)
In-year common application form (icaf) This form should be completed by parents/carers applying for a mainstream school place in Lewisham. Please read the guidance notes carefully before completing the
NOTES ON LINEAR TRANSFORMATIONS
NOTES ON LINEAR TRANSFORMATIONS Definition 1. Let V and W be vector spaces. A function T : V W is a linear transformation from V to W if the following two properties hold. i T v + v = T v + T v for all
Admission to a primary school other than the normal age of entry (in-year admission)
Admission to a primary school other than the normal age of entry (in-year admission) Please read these notes carefully and retain these notes for your records Where an application is being made to an Academy,
SIGNATURE OF APPLICANT: DATE. Please read the notes and instructions in the financial aid brochure before completing the application form.
PLEASE NOTE: WALTER SISULU UNIVERSITY FINANCIAL AID APPLICATION FORM 2015 ACADEMIC YEAR CLOSING DATE (currently registered students): 30 SEPTEMBER 2014 CLOSING DATE (first time entrants to WSU): 30 NOVEMBER
6.2 Permutations continued
6.2 Permutations continued Theorem A permutation on a finite set A is either a cycle or can be expressed as a product (composition of disjoint cycles. Proof is by (strong induction on the number, r, of
Similarity and Diagonalization. Similar Matrices
MATH022 Linear Algebra Brief lecture notes 48 Similarity and Diagonalization Similar Matrices Let A and B be n n matrices. We say that A is similar to B if there is an invertible n n matrix P such that
RENTAL APPLICATION Caldwell Housing Authority 22730 Farmway Road Caldwell, Idaho 83607 (208) 459-2232
SECTION 1: APPLICANT INFORMATION RENTAL APPLICATION Accessible unit needed: Yes No (mm/dd/yyyy): Applicant Name (first, middle initial, last): Applicant (SSN): Sex: Male Female of Birth (mm/dd/yyyy): Age:
Where Will my New Kidney Come From?
Where Will my New Kidney Come From? The Organ Shortage There is a severe shortage of organs for transplant. This means that the wait for a kidney transplant can be many years. The UW Transplant Program
THE ENTITY- RELATIONSHIP (ER) MODEL CHAPTER 7 (6/E) CHAPTER 3 (5/E)
THE ENTITY- RELATIONSHIP (ER) MODEL CHAPTER 7 (6/E) CHAPTER 3 (5/E) 2 LECTURE OUTLINE Using High-Level, Conceptual Data Models for Database Design Entity-Relationship (ER) model Popular high-level conceptual
Class notes Program Analysis course given by Prof. Mooly Sagiv Computer Science Department, Tel Aviv University second lecture 8/3/2007
Constant Propagation Class notes Program Analysis course given by Prof. Mooly Sagiv Computer Science Department, Tel Aviv University second lecture 8/3/2007 Osnat Minz and Mati Shomrat Introduction This
Georg Cantor and Set Theory
Georg Cantor and Set Theory. Life Father, Georg Waldemar Cantor, born in Denmark, successful merchant, and stock broker in St Petersburg. Mother, Maria Anna Böhm, was Russian. In 856, because of father
Elements of Abstract Group Theory
Chapter 2 Elements of Abstract Group Theory Mathematics is a game played according to certain simple rules with meaningless marks on paper. David Hilbert The importance of symmetry in physics, and for
Abstract Algebra Cheat Sheet
Abstract Algebra Cheat Sheet 16 December 2002 By Brendan Kidwell, based on Dr. Ward Heilman s notes for his Abstract Algebra class. Notes: Where applicable, page numbers are listed in parentheses at the
Notes on Algebraic Structures. Peter J. Cameron
Notes on Algebraic Structures Peter J. Cameron ii Preface These are the notes of the second-year course Algebraic Structures I at Queen Mary, University of London, as I taught it in the second semester
This application is to obtain a Birth Certificate for individuals who were born in Ontario. Applicant Information
This application is to obtain a Birth Certificate for individuals who were born in Ontario. Please type in the information for this application on your computer, print it out and sign it. Alternatively,
Math 55: Discrete Mathematics
Math 55: Discrete Mathematics UC Berkeley, Fall 2011 Homework # 5, due Wednesday, February 22 5.1.4 Let P (n) be the statement that 1 3 + 2 3 + + n 3 = (n(n + 1)/2) 2 for the positive integer n. a) What
Sermon Promise in Unexpected Places Genesis 39:1-23, September 21, 2014
1 How many of you have your Be a Blessing stones with you from last week? For those of you who weren t here, these stones are to remind us of the promise that God made to Abraham when he was called to
Set Theory Basic Concepts and Definitions
Set Theory Basic Concepts and Definitions The Importance of Set Theory One striking feature of humans is their inherent need and ability to group objects according to specific criteria. Our prehistoric
Full and Complete Binary Trees
Full and Complete Binary Trees Binary Tree Theorems 1 Here are two important types of binary trees. Note that the definitions, while similar, are logically independent. Definition: a binary tree T is full
Chapter 13: Basic ring theory
Chapter 3: Basic ring theory Matthew Macauley Department of Mathematical Sciences Clemson University http://www.math.clemson.edu/~macaule/ Math 42, Spring 24 M. Macauley (Clemson) Chapter 3: Basic ring
(a) Write each of p and q as a polynomial in x with coefficients in Z[y, z]. deg(p) = 7 deg(q) = 9
Homework #01, due 1/20/10 = 9.1.2, 9.1.4, 9.1.6, 9.1.8, 9.2.3 Additional problems for study: 9.1.1, 9.1.3, 9.1.5, 9.1.13, 9.2.1, 9.2.2, 9.2.4, 9.2.5, 9.2.6, 9.3.2, 9.3.3 9.1.1 (This problem was not assigned
FORM 6 [See rules 13(1) and 26] Application for inclusion of name in electoral roll
To FORM 6 [See rules 13(1) and 26] Application for inclusion of name in electoral roll The Electoral Registration Officer Assembly/ Parliamentary Constituency. Sir, I request that my name be included in
GLOSSARY OF TERMS. A kinship term used when speaking to or addressing a relative. Those relatives connected by one or more marital links.
GLOSSARY OF TERMS ADDRESS, TERM OF: AFFINAL RELATIVES: AGNATES: A kinship term used when speaking to or addressing a relative. Those relatives connected by one or more marital links. Male or female descendants
EAST RIDING OF YORKSHIRE COUNCIL
EAST RIDING OF YORKSHIRE COUNCIL ADMISSION ARRANGEMENTS, CO-ORDINATED SCHEMES AND PROTOCOLS FOR SCHOOL ADMISSIONS 2016-2017 Co-Ordinated Scheme for Primary School Admissions Co-Ordinated Scheme for Secondary
E3: PROBABILITY AND STATISTICS lecture notes
E3: PROBABILITY AND STATISTICS lecture notes 2 Contents 1 PROBABILITY THEORY 7 1.1 Experiments and random events............................ 7 1.2 Certain event. Impossible event............................
Joseph and the Coat of Many Colors
Joseph and the Coat of Many Colors Teacher Pep Talk: Joseph was called a dreamer by his brothers. But are you really a dreamer just because God chooses to speak to you in a dream? Joseph s brothers hated
HERCULES OFFSHORE, INC. APPLICATION FOR EMPLOYMENT. Personal Information
APPLICATION FOR EMPLOYMENT Personal Information Date: Social Security Number: - - Name: (Last) (First) (Middle) (Suffix) Address (Number and Street): County Zip City or Parish State Code Country Home Telephone
Appendix - 2. One of the most important sources of information for the psychologist is
Appendix - One of the most important sources of information for the psychologist is the experiences which individuals undergo. I request you to help me in my work by sparing your valuable time to answer
Running Descriptive Statistics: Sample and Population Values
Running Descriptive Statistics: Sample and Population Values Goal This exercise is an introduction to a few of the variables in the household- and person-level LIS data sets. The exercise concentrates
Sample Induction Proofs
Math 3 Worksheet: Induction Proofs III, Sample Proofs A.J. Hildebrand Sample Induction Proofs Below are model solutions to some of the practice problems on the induction worksheets. The solutions given
Matrix Representations of Linear Transformations and Changes of Coordinates
Matrix Representations of Linear Transformations and Changes of Coordinates 01 Subspaces and Bases 011 Definitions A subspace V of R n is a subset of R n that contains the zero element and is closed under
Student Scholarship Application
Student Scholarship Application Take Stock in Children scholarship recipients receive: A Scholarship A full-tuition Florida Prepaid College Scholarship, which can be used at any public university, college,
REVENUE ADMINISTRATIVE BULLETIN 1998-4 Approved: September 17, 1998
STATE OF MICHIGAN JOHN ENGLER, Governor DEPARTMENT OF TREASURY TREASURY BUILDING, P.O. BOX 1518, LANSING, MICHIGAN 48901 DOUGLAS B. ROBERTS, State Treasurer REVENUE ADMINISTRATIVE BULLETIN 1998-4 Approved:
Introduction to Topology
Introduction to Topology Tomoo Matsumura November 30, 2010 Contents 1 Topological spaces 3 1.1 Basis of a Topology......................................... 3 1.2 Comparing Topologies.......................................
Descriptive Inferential. The First Measured Century. Statistics. Statistics. We will focus on two types of statistical applications
Introduction: Statistics, Data and Statistical Thinking The First Measured Century FREC 408 Dr. Tom Ilvento 213 Townsend Hall [email protected] http://www.udel.edu/frec/ilvento http://www.pbs.org/fmc/index.htm
DEMENTIA SEVERITY RATING SCALE (DSRS)
PARTICIPANT S NAME: DATE: PERSON COMPLETING FORM: Please circle the most appropriate answer. Do you live with the participant? No Yes How much contact do you have with the participant? Less than 1 day
CHAPTER 13 Generation Skipping Transfers
CHAPTER 13 Generation Skipping Transfers DISCUSSION QUESTIONS 1. Define skip person. A natural person two or more generations younger than the transferor is a skip person. A trust is a skip person if all
Section 6.1 - Inner Products and Norms
Section 6.1 - Inner Products and Norms Definition. Let V be a vector space over F {R, C}. An inner product on V is a function that assigns, to every ordered pair of vectors x and y in V, a scalar in F,
Examination paper for MA0301 Elementær diskret matematikk
Department of Mathematical Sciences Examination paper for MA0301 Elementær diskret matematikk Academic contact during examination: Iris Marjan Smit a, Sverre Olaf Smalø b Phone: a 9285 0781, b 7359 1750
WILLS AND ESTATES. Arthur D. Sederbaum, Esq.
9 WILLS AND ESTATES Arthur D. Sederbaum, Esq. WILLS AND ESTATES Q. How old does a person need to be in New York to make a will? A. Eighteen. In addition, the testator must be of sound mind and memory,
A GUIDE TO WRITING YOUR LIFE STORY. Identifying information: Name and maiden name, date and place of birth:
1 A GUIDE TO WRITING YOUR LIFE STORY You are welcome to answer the following questions here or write your own essay on separate paper. If you would like to complete this on your computer ask your trainer
Outline 2.1 Graph Isomorphism 2.2 Automorphisms and Symmetry 2.3 Subgraphs, part 1
GRAPH THEORY LECTURE STRUCTURE AND REPRESENTATION PART A Abstract. Chapter focuses on the question of when two graphs are to be regarded as the same, on symmetries, and on subgraphs.. discusses the concept
. 0 1 10 2 100 11 1000 3 20 1 2 3 4 5 6 7 8 9
Introduction The purpose of this note is to find and study a method for determining and counting all the positive integer divisors of a positive integer Let N be a given positive integer We say d is a
4.5 Linear Dependence and Linear Independence
4.5 Linear Dependence and Linear Independence 267 32. {v 1, v 2 }, where v 1, v 2 are collinear vectors in R 3. 33. Prove that if S and S are subsets of a vector space V such that S is a subset of S, then
