Proof Flashcards

1
Q

NOT P

A

¬ P

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

P AND Q

A

P ∧ Q

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

P OR Q

A

P ∨ Q

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

If P then Q

A

P ⟹ Q

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

P if and only if Q

A

P ⟺ Q

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

NOT (P AND Q)

A

¬ P ∨ ¬Q
(NOT P) OR (NOT Q)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

NOT (P OR Q)

A

¬ P ∧ ¬Q
(NOT P) AND (NOT Q)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

NOT (If P then Q)

A

P ∧ (¬Q)
P AND (NOT Q)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

NOT (For all x ∈ S, P(x))

A

There exists x ∈ S, (¬P(x))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

NOT (There exists x ∈ S, P(x))

A

For all x ∈ S, (¬P(x))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Direct proof steps

A
  1. Write down assumptions and known facts
  2. Create a logical chain of argument
  3. Deduce the statement to be proven
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Proof by cases

A

split the proposition into a finite number of cases and verify the proposition in each case

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Proof by contradiction steps

A
  1. Assume the negation of the statement (¬P) is true
  2. Use logical deductions to show it leads to a contradiction and conclude that the original statement (P) is true
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Proof by induction steps

A
  1. Base Case - show true for the initial value (usually 0 or 1)
  2. Inductive Hypothesis - assume the statement is true for n = k (some number k)
  3. Inductive Step - show if the statement is true for n = k then it must be true for n = k + 1
  4. Conclusion - conclude the statement holds for all n (since base case and inductive step work)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Proof by construction

A
  1. Create an object or example that satisfies the given statement
  2. Show that the object or example meets the required conditions
  3. Conclude that the statement is true by virtue of the constructed object or example
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

When is a direct proof most useful

A

When proving “if (claim A is true), then (claim B is true)”

17
Q

When is proof by cases most useful

A

For claims involving modular arithmetic, even v.s. odd, “is a multiple of” or absolute value

18
Q

When is proof by construction most useful

A

When the claim asks you to “show that something exists”

19
Q

When is proof by induction most useful

A

When previous results seem to build upon each other to yield a later result