Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8367107
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 9, 20262026-06-09T13:04:43+00:00 2026-06-09T13:04:43+00:00

What is the best way to automatically proof that two first-order formulas F and

  • 0

What is the best way to automatically proof that two first-order formulas F and G are equivalent?

The formulas have some restrictions compared to “full” first-order formulas:

  1. quantifier-free
  2. function-free
  3. implicitly universally quantified

I can transform those formulas in clause normal form and I have routines for unification for literals. However I’m not sure how to continue and if this problem is decidable.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-09T13:04:44+00:00Added an answer on June 9, 2026 at 1:04 pm

    As mentioned, to prove that F <=> G where both are closed (universally quantified) formulas, you need to prove F => G and also G => F. To prove each of these two formulas, you can use various calculi. I’ll describe [resolution calculus]:

    • Negate the conjecture, so F => G becomes F & -G.
    • Convert to CNF.
    • Run resolution procedure.
    • If you derive an empty clause, you’ve proved the original conjecture F => G. If the search saturates and no more new clauses can be derived, the conjecture doesn’t hold.

    Under your conditions, all atomic formulas coming from F will be predicate symbols applied only to variables and all atomic formulas from G will be predicate symbols applied only toto skolem constants. So the resolution procedure will only produce substitutions that either map variables to other variables, or variables to those skolem constants. This implies that it can only derive a finite amount of distinct literals, and so the resolution procedure will always stop – it will be decidable.


    You can also use automated tool for this purpose that will do all that work for you. I use The E Theorem Prover for such problems. As the input language I use the language of The TPTP Problem Library, which is easy to read/write for humans.

    To give an example: Input file:

    fof(my_formula_name, conjecture, (![X]: p(X)) <=> (![Y]: p(Y)) ).
    

    then I run

    eprover --tstp-format -xAuto -tAuto myfile
    

    (-tAuto and -xAuto do some auto-configurations, most likely not needed in your case), and the result is

    # Garbage collection reclaimed 59 unused term cells.
    
    # Auto-Ordering is analysing problem.
    # Problem is type GHNFGFFSF00SS
    # Auto-mode selected ordering type KBO6
    # Auto-mode selected ordering precedence scheme <invfreq>
    # Auto-mode selected weight ordering scheme <precrank20>
    #
    # Auto-Heuristic is analysing problem.
    # Problem is type GHNFGFFSF00SS
    # Auto-Mode selected heuristic G_E___107_C41_F1_PI_AE_Q4_CS_SP_PS_S0Y
    # and selection function SelectMaxLComplexAvoidPosPred.
    #
    # No equality, disabling AC handling.
    #
    # Initializing proof state
    #
    #cnf(i_0_2,negated_conjecture,(~p(esk1_0)|~p(esk2_0))).
    #
    #cnf(i_0_1,negated_conjecture,(p(X1)|p(X2))).
    # Presaturation interreduction done
    #
    #cnf(i_0_2,negated_conjecture,(~p(esk1_0)|~p(esk2_0))).
    #
    #cnf(i_0_1,negated_conjecture,(p(X2)|p(X1))).
    #
    #cnf(i_0_3,negated_conjecture,(p(X3))).
    
    # Proof found!
    # SZS status Theorem
    # Parsed axioms                        : 1
    # Removed by relevancy pruning         : 0
    # Initial clauses                      : 2
    # Removed in clause preprocessing      : 0
    # Initial clauses in saturation        : 2
    # Processed clauses                    : 5
    # ...of these trivial                  : 0
    # ...subsumed                          : 0
    # ...remaining for further processing  : 5
    # Other redundant clauses eliminated   : 0
    # Clauses deleted for lack of memory   : 0
    # Backward-subsumed                    : 1
    # Backward-rewritten                   : 1
    # Generated clauses                    : 4
    # ...of the previous two non-trivial   : 4
    # Contextual simplify-reflections      : 0
    # Paramodulations                      : 2
    # Factorizations                       : 2
    # Equation resolutions                 : 0
    # Current number of processed clauses  : 1
    #    Positive orientable unit clauses  : 1
    #    Positive unorientable unit clauses: 0
    #    Negative unit clauses             : 0
    #    Non-unit-clauses                  : 0
    # Current number of unprocessed clauses: 0
    # ...number of literals in the above   : 0
    # Clause-clause subsumption calls (NU) : 0
    # Rec. Clause-clause subsumption calls : 0
    # Unit Clause-clause subsumption calls : 1
    # Rewrite failures with RHS unbound    : 0
    # Indexed BW rewrite attempts          : 4
    # Indexed BW rewrite successes         : 4
    # Unification attempts                 : 12
    # Unification successes                : 9
    # Backwards rewriting index :     2 leaves,   1.00+/-0.000 terms/leaf
    # Paramod-from index        :     1 leaves,   1.00+/-0.000 terms/leaf
    # Paramod-into index        :     1 leaves,   1.00+/-0.000 terms/leaf
    

    where the most important lines are

    # Proof found!
    # SZS status Theorem
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

What's the best way to call a class constructor that can have lots of
what is the best way to have JFrames, JDialogs, etc that derive from a
What is the best way to run silverlight unit tests automatically using team city?
The best way to explain my problem is by a example. I have a
The best way of describing this is I have a table of people with
What is the best way to automatically place copyright notices, disclaimers, etc. in all
Using jQuery, what's the best way to automatically initialize a plugin on all current
What's the best way to set a creation date for an object automatically, and
What is the best way to construct a audio player that can communicate with
What's the best way to automatically figure out the best threshold for converting a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.