A-level Computing/AQA/Paper 1/Theory of computation/Maths for regular expressions

From testwiki
Revision as of 15:55, 26 March 2019 by 195.195.236.117 (talk) (Proper Subsets ⊂)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Template:CPTPageNavigationP1



Basic set understanding

Sets describe collections of things or values, such as numbers, animals or people.

In a set, each value occurs only once. For example, the value fox will occur only once in the set of animals. Just as the value 3 occurs only once in the element of all natural numbers, N.

The cardinality of a set refers to the number of elements it contains.

An empty set is written ∅ and its cardinality is 0.

Sets may be finite or infinite. For example, the set of people currently alive in the world will be finite, but the set of N is infinite.

A set may be countable or uncountable. A countable set is a set, whose elements can be matched with the set of natural numbers. In other words, it is possible to count the elements one-by-one. If a set is finite, it will always be countable. The best example of an uncountable set is R. It is impossible to match each element of R with an element of N. This is because there are not enough elements in N to match each one with an element of R.

Membership ∈ and its reverse ∉

x ∈ S, x is an element of S.

Examples:

  • x ∈ ℕ, meaning that x is an element of the set of natural numbers. For example, 3 ∈ ℕ. Whereas 3.5 ∉ ℕ
  • x ∈ Q, meaning that x is an element of the set of rational numbers. Whereas pi ∉ Q
  • x ∈ WorkingDays, meaning that x is an element of the set of all WorkingDays. For example, Monday ∈ WorkingDays. Whereas Saturday ∉ WorkingDays
  • x ∈ WeekendDays, meaning that x is an element of the set of all WeekendDays. For example, Saturday ∈ WeekendDays. Whereas Monday ∉ WeekendDays

Template:CPTExercise Template:CPTQuestionTab Using set notation, state that Sunday is a weekend day. Template:CPTQuestionTabEnd Template:CPTAnswerTab Sunday ∈ WeekendDays Template:CPTAnswerTabEnd Template:CPTQuestionTab Using set notation, state that Monday is not a weekend day. Template:CPTQuestionTabEnd Template:CPTAnswerTab Monday ∉ WeekendDays Template:CPTAnswerTabEnd Template:CPTQuestionTab What is the cardinality of the set WeekendDays. Template:CPTQuestionTabEnd Template:CPTAnswerTab 2 Template:CPTAnswerTabEnd Template:CPTQuestionTab Let set A be the set of all atoms in the world. Which of the following words can be used to describe this set? Countable, uncountable, finite, infinite. Template:CPTQuestionTabEnd Template:CPTAnswerTab Countable, finite. Template:CPTAnswerTabEnd Template:CPTQuestionTab Let set P be the set of all prime numbers. Which of the following words can be used to describe this set? Countable, uncountable, finite, infinite. Template:CPTQuestionTabEnd Template:CPTAnswerTab Countable, infinite. Template:CPTAnswerTabEnd Template:Robox/Close

Union

The union of two sets:
AB

A ∪ B, meaning that all elements of the set A form a union with all of the elements in set B. This is a set comprehension, since this generates a new set.

Examples:

  • Q ∪ Irrational Number Set, meaning that all numbers in the set of rational numbers form a union with the set of all irrational numbers. This set comprehension generates the set of real numbers.
  • WorkingDays ∪ WeekendDays, meaning that all of the working days (elements of WorkingDays) form a union with weekend days (elements of WeekendDays). This set comprehension generates the set of WeekDays.
  • {1, 2} ∪ {2,3,4} = {1,2,3,4} (notice that only once instance of 2 is in the resulting set)
  • {1, 2, green} ∪ {red, white, green}={1, 2, red, white, green}
  • {1, 2} ∪ {1, 2} = {1, 2}

Template:CPTExercise Let A = {0,2,4,6,8,10,12}

and B = {0,3,6,9,12}. Template:CPTQuestionTab Write out all elements of A ∪ B Template:CPTQuestionTabEnd Template:CPTAnswerTab {0,2,3,4,6,8,9,10,12} Template:CPTAnswerTabEnd Template:CPTQuestionTabTemplate:NowrapTemplate:CPTQuestionTabEnd Template:CPTAnswerTab Template:Nowrap Template:CPTAnswerTabEnd Template:CPTQuestionTabTemplate:Nowrap}Template:CPTQuestionTabEnd Template:CPTAnswerTab Template:Nowrap Template:CPTAnswerTabEnd Template:CPTQuestionTabTemplate:NowrapTemplate:CPTQuestionTabEnd Template:CPTAnswerTab Template:Nowrap Template:CPTAnswerTabEnd Template:Robox/Close

Intersection

The intersection of two sets:
AB

A ∩ B, meaning that the set A and set B form an intersection. The generated set will be ∅, if the two sets share no elements.

Examples:

Let A be the set of numbers which are divisible by 3 and B the set of numbers divisible by 4.

  • A ∩ B, meaning that A and B form an intersection, which generates a set, which contains all of the numbers divisible by 3 and 4.
  • WorkingDays ∩ WeekendDays, meaning that WorkingDays and WeekendDays form an intersection, which is ∅

Now let A be the set of all A-level students who take computer science and B the set of all A-level students who take mathematics.

  • A ∩ B, meaning that A and B form an intersection, which generates a set, which contains all students who take both computer science and mathematics.
  • {1, 2, 3} ∩ {2, 3, 4} = {2, 3}
  • {1, 2, 3} ∩ {bear,hen,squirrel} = Ø (this means an empty set)
  • {cat, dog, canary} ∩ {wolf, canary, whale, cat} = {cat, canary}

Template:CPTExercise As above,

let A = {0,2,4,6,8,10,12}

and B = {0,3,6,9,12}.

Template:CPTQuestionTab

A ∩ B =Template:CPTQuestionTabEnd Template:CPTAnswerTab {0,6,12} Template:CPTAnswerTabEnd Template:CPTQuestionTabA ∩ {goat,4,6,9} =Template:CPTQuestionTabEnd Template:CPTAnswerTab {4,6} Template:CPTAnswerTabEnd Template:CPTQuestionTabA ∩ {goat,3,9} =Template:CPTQuestionTabEnd Template:CPTAnswerTab It has no intersected values (Ø) Template:CPTAnswerTabEnd Template:CPTQuestionTabB ∩ {3,5,7,9,11} =Template:CPTQuestionTabEnd Template:CPTAnswerTab {3,9} Template:CPTAnswerTabEnd Template:Robox/Close

Difference \

A \ B, meaning that the set A and set B form a set difference. This will generate a set, which contains the elements of A, which are NOT also in B.

The difference of two sets:
AB

Examples:

  • R \ Q, meaning that R and Q form a set difference. This will generate the set of irrational numbers.

Let A be the set of all A-level students who take computer science and B the set of all A-level students who take mathematics.

  • A \ B, meaning that A and B form a set difference. This will generate the set of all computer science students, who do not also take mathematics.
  • {1, 2, 3} ∩ {2, 3, 4} = {2, 3}
  • {1, 2, 3} ∩ {bear,hen,squirrel} = Ø (this means an empty set)
  • {cat, dog, canary} ∩ {wolf, canary, whale, cat} = {cat, canary}

Template:CPTExercise As above,

let A = {0,2,4,6,8,10,12}

and B = {0,3,6,9,12}.

Template:CPTQuestionTab Let us take a look at the two sets we are using as examples:

A ∖  B    =Template:CPTQuestionTabEnd Template:CPTAnswerTab {2,4,8,10} Template:CPTAnswerTabEnd Template:CPTQuestionTabB ∖  A    =Template:CPTQuestionTabEnd Template:CPTAnswerTab {3,9} Template:CPTAnswerTabEnd Template:CPTQuestionTabB ∖  {1,2,3,5,7,11}    =Template:CPTQuestionTabEnd Template:CPTAnswerTab {0,6,9,12} Template:CPTAnswerTabEnd Template:CPTQuestionTabA ∖  {0,1,2,3,5,8,13}    =Template:CPTQuestionTabEnd Template:CPTAnswerTab {4,6,10,12} Template:CPTAnswerTabEnd Template:Robox/Close

Proper Subsets

S ⊂ T, meaning that S is a proper subset of T, such that all elements in S are also elements of T. However, there will need to be at least one element in T, which is not in S.

Examples:

  • N ⊂ Z, meaning that the set of natural numbers is a proper subset of the set of integers. In other words, all natural numbers are also integers. There are some elements in Z, which are not in N - these are the negative integers.
  • Z ⊂ Q, meaning that the set of integers is a proper subset of the set of rational numbers. In other words, all integers are also rational numbers. But there are rational numbers which are not integers.

Template:CPTExercise

Template:CPTQuestionTab As above,

let A = {0,2,4,6,8,10,12}

and B = {0,3,6,9,12}.

Is A a proper subset of B, so that we can write A ⊂ B? Explain your answer. Template:CPTQuestionTabEnd Template:CPTAnswerTab No, because there are elements in the set A which are not in the set B. In other words we can find an element, for which x ∈ A and x ∉ B Template:CPTAnswerTabEnd Template:CPTQuestionTab Relating to the above definitions for A, define a set which is a proper subset of A. Template:CPTQuestionTabEnd Template:CPTAnswerTab Any valid answer, for example {0,2,12} or {8,12} Template:CPTAnswerTabEnd Template:Robox/Close

Subsets

A ⊆ B, meaning that A forms a subset of B. In other words, A could be identical to B, but does not have to be!

Examples:

Let A be the set of all students in 6th form and B the set of all students taking computer science.

  • A ⊆ B, meaning that A forms a subset of B. In other words, all students in the 6th form could be taking computer science. In which case the two sets would be the same, but they may not be!

Now let A be all of the students present in school and B the set of students currently in the assembly hall.

  • A ⊆ B, meaning that A forms a subset of B. In other words, all students currently in present in school may all be located in the assembly hall, but they may not be!

Template:CPTExercise

Template:CPTQuestionTab Let A be all students who sit the A-level exam in computer science. Let B be all the students who gain a 'B' grade or above in the A-level computer science exam.

Is B a subset of A? Explain your answer. Template:CPTQuestionTabEnd Template:CPTAnswerTab Yes, because it may be the case that all students who sit the exam will also gain grade 'B' or above. Template:CPTAnswerTabEnd Template:CPTQuestionTab Let A be the set of customers in a restaurant. Let B be the set of all the vegetarian customers in the restaurant.

Is B a subset of A? Could A be a subset of B? Could A be a proper subset of B? Explain your answer. Template:CPTQuestionTabEnd Template:CPTAnswerTab B is a subset of A since every vegetarian customer is a customer. A could be a subset of B, because it may be the case that all customers present are also vegetarian. It cannot be a proper subset, since A contains B. Template:CPTAnswerTabEnd Template:Robox/Close

Template:BookCat