T: Is the Proof in Predicate Calculus Correct?

In summary: Theorem t1 : forall A, G (p A) m -> G A m.Proof.intros; destruct (a1 A) as [? | [? | ?]]; eauto.Qed.In summary, Let's say that P one place and K one place operations are allowed. The following axioms or assumptions hold:1) for all A, H(A,m)v H(m,A)v G(A,m)2) for all A, H(A,m)=> G[P(A),A]3) for all A, H(m,A) => G[P(A),
  • #1
solakis1
422
0
Let :
1)P one place operation
.........m is a constant......
2)K one place operation

let :
1) G two place predicate
2) H two place predicate
Let :
The following axioms or assumptions)
1)for all A { H(A,m)v H(m,A)v G(A,m)}
2)for all A { H(A,m)=> G[P(A),A]}
3)for all A {H(m,A) => G[P(A),K(A)]}
4)for all A {G[K(A),m] => G(A,m)}.
5)for all A,B,C { [G(A,B) and G(A,C)]=> G(B,C)}
Then formally prove :
for all A {G[P(A),m] => G(A,m)}
 
Physics news on Phys.org
  • #2
This problem has two parts: proving the claim informally and then translating the proof into a formal derivation. The second part depends on the formal system, i.e., the definition of a derivation. I have not though about this problem, but have you proved this statement on paper?
 
  • #3
Evgeny.Makarov said:
This problem has two parts: proving the claim informally and then translating the proof into a formal derivation. The second part depends on the formal system, i.e., the definition of a derivation. I have not though about this problem, but have you proved this statement on paper?

No

How do we prove the statement informaly??

Do we have informal proofs in predicate calculus?
 
  • #4
start with axiom (1) (that looks the most promising). we can assume G(P(A),m).

if G(A,m) there's nothing to prove (note: it may "make more sense" to prove that if not H(A,m) and not H(m,A) then necessarily G(A,m), essentially "saving this case for last").

if H(A,m), then G(P(A),A) by (2), so we have G(A,m) by (3)

(since we have G(P(A),A) and G(P(A),m)).

if H(m,A), then we have G(A,m) by (3) and (4) and transitivity of implication.

i have no idea what i just proved, but I'm pretty sure i did it "informally".
 
  • #5
Deveno said:
start with axiom (1) (that looks the most promising). we can assume G(P(A),m).

if G(A,m) there's nothing to prove (note: it may "make more sense" to prove that if not H(A,m) and not H(m,A) then necessarily G(A,m), essentially "saving this case for last").

if H(A,m), then G(P(A),A) by (2), so we have G(A,m) by (3)

(since we have G(P(A),A) and G(P(A),m)).

if H(m,A), then we have G(A,m) by (3) and (4) and transitivity of implication.

i have no idea what i just proved, but I'm pretty sure i did it "informally".

I wonder could that informal proof be checked thru a computer program??
 
  • #6
solakis said:
I wonder could that informal proof be checked thru a computer program??

An informal proof is for the benefit of Humans who want to understand what is going on. An informal proof must be translated into a formal proof for machine verification (or translated from a formal to informal proof for the benefit of Humans if the proof is in fact machine generated).

CB
 
  • #7
solakis said:
I wonder could that informal proof be checked thru a computer program??
I indeed formalized this proof in Coq. Here is the script.

Code:
Parameters (T : Type) (m : T) (p k : T -> T) (G H : T -> T -> Prop).

Axiom a1 : forall A,  H A m \/ H m A \/ G A m.
Axiom a2 : forall A,  H A m-> G (p A) A.
Axiom a3 : forall A, H m A -> G (p A) (k A).
Axiom a4 : forall A, G (k A) m -> G A m.
Axiom a5 : forall A B C, G A B -> G A C-> G B C.

Theorem t : forall A, G (p A) m -> G A m.
Proof.
intros A P. (* assume A and P : G (p A) m *)
destruct (a1 A) as [? | [? | ?]].
(* Case when H A m *)
+ assert (G (p A) A) by (apply a2; trivial).
  eapply a5; eauto.
(* Case when H m A *)
+ assert (G (p A) (k A)) by (apply a3; trivial).
  assert (G (k A) m) by (eapply a5; eauto).
  apply a4; trivial.
(* Case when G A m *)
+ trivial.
Qed.

In fact, Coq is smart enough to prove most of the claim automatically:

Code:
Theorem t1 : forall A, G (p A) m -> G A m.
Proof.
intros; destruct (a1 A) as [? | [? | ?]]; eauto.
Qed.

Note that this is not a formal derivation; this is a script consisting of commands that generate a derivation. The derivation of t1 is

Code:
t1 = 
fun (A : T) (H0 : G (p A) m) =>
let o := a1 A in
match o with
| or_introl H1 => a5 (p A) A m (a2 A H1) H0
| or_intror (or_introl H2) => a4 A (a5 (p A) (k A) m (a3 A H2) H0)
| or_intror (or_intror H2) => H2
end

I don't expect anyone here to understand this, but if you want to try, disjunction is right-associative in Coq, so or_introl H1 is the case when H1 : H A m, or_intror (or_introl H2) is when H2 : H m A and or_intror (or_intror H2) is when H2 : G A m.

As I said in another thread, this derivation is also isomorphic to a derivation in natural deduction, so it can be straightforwardly translated, for example, into Fitch notation.
 
  • #8
CaptainBlack said:
An informal proof is for the benefit of Humans who want to understand what is going on. An informal proof must be translated into a formal proof for machine verification (or translated from a formal to informal proof for the benefit of Humans if the proof is in fact machine generated).

CB

Why,do you understand the informal proof Deveno wrote??
 
Last edited:
  • #9
solakis said:
Why,do you understand the informal proof Deveno wrote??

That would require that I were interested enough in the original question to read the question and purported proof in detail. But I'm not, mainly because formal logics are of no intrinsic interest to me.

CB
 

Related to T: Is the Proof in Predicate Calculus Correct?

1. What is predicate calculus?

Predicate calculus is a formal system of mathematical logic used to represent and reason about statements involving quantifiers and predicates. It is commonly used in fields such as mathematics, computer science, and philosophy to express and prove mathematical theorems.

2. How is proof in predicate calculus different from other types of proof?

Proof in predicate calculus is different from other types of proof, such as deductive and inductive proofs, because it uses a specific set of rules and symbols to represent logical statements and their relationships. It also involves the use of quantifiers, which allow for statements to be made about all or some elements within a certain domain.

3. What are some common symbols used in predicate calculus?

Some common symbols used in predicate calculus include logical connectives (such as ∧ for "and" and ∨ for "or"), quantifiers (such as ∀ for "for all" and ∃ for "there exists"), and variables (such as x and y). These symbols are used to represent logical operations and relationships between statements.

4. How is a proof in predicate calculus constructed?

A proof in predicate calculus is constructed by starting with a set of axioms and applying logical rules and operations to derive new statements. This process continues until the desired statement or conclusion is reached. The proof must follow a strict set of rules and be logically sound in order to be considered valid.

5. What are some real-world applications of predicate calculus?

Predicate calculus has many real-world applications, including in computer programming, artificial intelligence, and linguistics. It is used to represent and reason about complex systems and relationships, such as in database queries, natural language processing, and automated reasoning systems.

Similar threads

  • Set Theory, Logic, Probability, Statistics
Replies
2
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
6
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
7
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
118
  • Set Theory, Logic, Probability, Statistics
Replies
2
Views
2K
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
265
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
936
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
1K
  • Set Theory, Logic, Probability, Statistics
Replies
27
Views
3K
  • Set Theory, Logic, Probability, Statistics
Replies
1
Views
1K
Back
Top