Download Slide 1

Survey
yes no Was this document useful for you?
   Thank you for your participation!

* Your assessment is very important for improving the workof artificial intelligence, which forms the content of this project

Document related concepts

Infinitesimal wikipedia , lookup

Foundations of mathematics wikipedia , lookup

Georg Cantor's first set theory article wikipedia , lookup

Theorem wikipedia , lookup

List of first-order theories wikipedia , lookup

Large numbers wikipedia , lookup

Principia Mathematica wikipedia , lookup

Mathematical proof wikipedia , lookup

List of prime numbers wikipedia , lookup

Quadratic reciprocity wikipedia , lookup

Collatz conjecture wikipedia , lookup

Order theory wikipedia , lookup

Addition wikipedia , lookup

Elementary mathematics wikipedia , lookup

Proofs of Fermat's little theorem wikipedia , lookup

Transcript
All images are copyrighted to their respective copyright holders and reproduced here for academic purposes under the condition of “fair using”.
• Chapter 3.1
1
Original author of the slides:
Vadim Bulitko
University of Alberta
http://www.cs.ualberta.ca/~bulitko/W04
Modified by T. Andrew Yang
([email protected])
2
Test Driving
• Acquired the first-order predicate calculus
mechanism over the last N lectures
• Time to try them out
• Chapter 3 is an
interesting test
3
Sneak-preview : Sets
• What is a set?
• A collection of elements:
– Order is irrelevant
– No repetitions
– Can be infinite
– Can be empty
• Examples:
– {Angela, Belinda, Jean}
– {0,1,2,3,…}
4
Operations on sets
• S is a set
• Membership:
xS
x is an element of S
Angela{Angela, Belinda, Jean}
• Subset:
– S1  S
– Set S1 is a subset of set S
– All elements of S1 are elements of S
– {Angela,Belinda}  {Angela, Belinda, Jean}
• Q: How many subsets does a set have?
5
Operations on sets
• S, S1 are sets
• Equality:
S = S1
iff they have the same elements
• Difference:
S - S1
is a set of all elements that belong to S but NOT
to S1
{Angela, Belinda, Jean} - {Angela,Dana} =
{Belinda, Jean}
6
Operations on sets
• S, S1 are sets
• Intersection:
– S  S1
– is a set of all elements that belong to both
– {Angela, Belinda, Jean}  {Angela,Dana} = {Angela}
• Union:
– S  S1
– is a set of all elements that belong to either
– {Angela, Belinda, Jean}  {Angela,Dana} =
{Angela,Belinda,Jean,Dana}
7
Numbers
• We will work with numbers for the next little
while
• R is the set of all real numbers
– 0, 1, -5.27, Pi, …
• Q is the set of rational numbers
– 0, 1, -5.27, …
• Z is the set of integer numbers
– 0, 1, -1, 2, …
• N is the set of natural numbers
– 0, 1, 2, …
8
Notes
• The following inclusions hold
NZQR
• Note that the inclusions are actually proper:
NZQR
• Algebraic operations (+, -, *, /, etc.) are defined
on all of these sets
• Order relations are also defined:
– Any two numbers are comparable (<, >, =)
9
Numbers in Predicate Logic
• Our interpretations will set the domain set to R
(or sometimes N, Z, Q)
• We will use functional symbols:
– +, *, -, /, etc.
– nN [n+1N]
– For every natural number n, n+1 is a natural number
as well
• We will also use operator notation for predicates
<, >, = :
– nN [n < n+1]
– For every natural number n < n+1
10
Premises
• One can define a system of predicate logic
statements that describe all foundational
properties of numbers
– Axioms
• Axiomatic introduction of real numbers, integers,
etc.
• We won’t do it at this moment
– Non-trivial
• Nevertheless we will use these “imaginary”
premises to prove other statements
11
Proving Statements
• From now we will be proving statements
– Theorems
• a formula, proposition, or statement in mathematics or logic
deduced or to be deduced from other formulas or propositions
– Propositions
• an expression in language or signs of something that can be
believed, doubted, or denied or is either true or false
– Corollaries
• a proposition inferred immediately from a proved proposition with
little or no additional proof
– Lemmas
• an auxiliary proposition used in the demonstration of another
proposition
• They are statements in predicate logic
• We will be showing that they are logically implied by the
system of premises (axioms)
12
Odd / Even
• Define predicate even(n):
– n is an even integer iff
– Exists an integer k such that n=2k
– nZ [even(n)  kZ [n=2k]]
• Define predicate odd(n):
– n is an odd integer iff
– Exists an integer k such that n=2k+1
– nZ [odd(n)  kZ [n=2k+1]]
13
Examples
• Odd / even ?
– 3114
– -95*2
– (a+b)2 if a,b are even
– n*(n+1) if n is even
– 560
– n+1 if n is odd
– n*(n-1) + 3
– sqrt(74)
– 3.14
14
Prime / Composite
• Define predicate prime(n):
n is a prime number iff
n>1 and
for all positive integers r and s, if n = rs, then r = 1 or
s = 1.
nZ [prime(n)  n>1 & r,sN [n=rs  r=1 v s=1]]
• Define predicate composite(n):
n is a composite integer iff
n is not prime and is greater than 1.
nZ [composite(n)  n>1 & ~prime(n)]
15
Prime / composite?
•
•
•
•
•
•
•
•
34
1
-50
3.14
725
(2a+8k)3
p-1 where p is a prime
p+1 where p is a prime
16
Difficulty of Factoring
• Suppose someone gives you a number n
and asks to find factors of it
• Integers r and s such that rs=n
• How would you do it?
– Can try all integers from 1 to n
– Can try all integers from 1 to sqrt(n)
– Can try all primes from 1 to sqrt(n)
• Running time: exponential in the number
of digits of n
17
Applications
• Long prime numbers are very difficult to factor
(i.e., find r and s such that rs=n)
• Of course, once you know one factor it is easy
to find the other (just divide)
• It’s not too difficult to factor a small n; for large n
(1,000 bits or larger) it’s a different story …
• Security codes, encryption, etc. are based on
some of these properties
e.g., RSA public key cryptographical system
18
RSA public key crypto system
•
To derive an RSA key pair (pub, priv):
1. Find two large primes p and q.
2. n = pq
3. Let pub be a number < n such that pub is relatively
prime to (n).
4. Compute priv such that pub * priv mod (n) = 1
•
The RSA Challenge (up to US$200,000)
http://www.rsasecurity.com/rsalabs/challenges/factoring/numbers.html
Ended in 2007 …
19
Questions?
20
Existential Statements
• x P(x)
• Proofs:
– Constructive
• Construct an example of such x
– Non-constructive
• By contradiction
– Show that if such x does NOT exist than a contradiction
can be derived
21
Example
• Prove that
nN a,b prime(a) & prime(b) & (a+b=n)
• Proof:
– n=210
– a=113
– b=97
• // Piece of cake…
22
Universal Statements
• x P(x)
• x [Q(x)  R(x)]
• Proof techniques:
– Exhaustion
– By contradiction
• Assume the statement is not true
• Arrive at a contradiction
– Direct
• Generalizing from an arbitrary particular member
– Mathematical induction (chapter 4)
23
Example 1
• Exhaustion:
– Any even number between 4 and 30 can be
written as a sum of two primes:
– 4=2+2
– 6=3+3
– 8=3+5
–…
– 30=11+19
24
Problems?
• Works for finite domains only
• What if I want to prove that for any integer
n the product of n and n+1 is even?
• Can I exhaust all integer values of n?
25
Example 2
• Theorem: nZ [ even(n*(n+1)) ]
• Proof:
– Consider a particular but arbitrarily chosen
integer n
– n is odd or even
– Case 1: n is odd
• Then n=2k+1, n+1=2k+2
• n(n+1) = (2k+1)(2k+2) = 2(2k+1)(k+1) = 2p for
some integer p
• So n(n+1) is even
26
Example 2 (cont’d)
• Case 2: n is even
– Then n=2k, n+1=2k+1
– n(n+1) = 2k(2k+1) = 2p
• for some integer p
– So n(n+1) is even
• Done!
27
Fallacy
• Generalizing from a particular but NOT arbitrarily
chosen example
• i.e., using some additional properties of n
• Example:
– “all odd numbers are prime”
– “Proof”:
• Consider odd number 3
• It is prime
• Thus for any odd n prime(n) holds
• Such “proofs” can be given for correct
statements as well!
28
Prevention
• Try to stay away from specific instances
(e.g., 3)
• Make sure that you are not using any
additional properties of n considered
• Challenge your proof
– Try to play the devil’s advocate and find holes
in it…
29
Other Common Mistakes
• Pages 120-121 in the book
• Using the same letter to mean different things
• Begging for the question
• Jumping to a conclusion
– Insufficient justification
30
Questions?
31