How To Install eqp on Fedora 34

eqp is Automated theorem prover for first-order equational logic

Introduction

In this tutorial we learn how to install eqp on Fedora 34.

What is eqp

EQP is an automated theorem proving program for first-order equational logic. Its strengths are good implementations of associative-commutative unification and matching, a variety of strategies for equational reasoning, and fast search. It seems to perform well on many problems about lattice-like structures. EQP is not a stable and polished production theorem prover like Otter or Prover9. Since it has obtained several interesting results, it was decided to make it available (including the source code) to everyone, with no restrictions (and of course no warranty either). EQP’s documentation is not great, but if you already know Otter, you probably will not have great difficulty in learning to use EQP. In the early 1930’s, it was postulated that every Robbin’s Algebra, (named after Herbert Ellis Robbins), must also be a Boolean Algebra. Many human mathematicians attempted to find a proof, or a counter-example of this conjecture, but failed. The EQP automated theorem prover (and its author William McCune) made history by providing the first known proof in 1996. The EQP input files for proving Robbin’s Conjecture can be found in the package documentation directory /usr/share/doc/eqp-09e/examples/robbins/

We can use yum or dnf to install eqp on Fedora 34. In this tutorial we discuss both methods but you only need to choose one of method to install eqp.

Install eqp on Fedora 34 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install eqp using dnf by running the following command:

sudo dnf -y install eqp

Install eqp on Fedora 34 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

The output should look something like this:

Fedora 34 - x86_64                               20 kB/s | 6.6 kB     00:00
Fedora 34 openh264 (From Cisco) - x86_64        1.4 kB/s | 989  B     00:00
Fedora Modular 34 - x86_64                       68 kB/s | 6.5 kB     00:00
Fedora 34 - x86_64 - Updates                    3.5 kB/s | 6.2 kB     00:01
Fedora Modular 34 - x86_64 - Updates             17 kB/s | 5.9 kB     00:00
Metadata cache created.

After updating yum database, We can install eqp using yum by running the following command:

sudo yum -y install eqp

How To Uninstall eqp on Fedora 34

To uninstall only the eqp package we can use the following command:

sudo dnf remove eqp

eqp Package Contents on Fedora 34

/usr/bin/eqp
/usr/lib/.build-id
/usr/lib/.build-id/9e
/usr/lib/.build-id/9e/fa78165b42eab15a298b15159832bcc2b7e0ca
/usr/share/doc/eqp
/usr/share/doc/eqp/ChangeLog
/usr/share/doc/eqp/Manual.txt
/usr/share/doc/eqp/README
/usr/share/doc/eqp/basic.doc
/usr/share/doc/eqp/examples
/usr/share/doc/eqp/examples/33-basic
/usr/share/doc/eqp/examples/33-basic/DUAL-BA-5a.in
/usr/share/doc/eqp/examples/33-basic/DUAL-BA-5c.in
/usr/share/doc/eqp/examples/33-basic/LT-2.in
/usr/share/doc/eqp/examples/33-basic/LT-5.in
/usr/share/doc/eqp/examples/33-basic/LT-6.in
/usr/share/doc/eqp/examples/33-basic/LT-8.in
/usr/share/doc/eqp/examples/33-basic/QLT-1.in
/usr/share/doc/eqp/examples/33-basic/QLT-2.in
/usr/share/doc/eqp/examples/33-basic/QLT-3.in
/usr/share/doc/eqp/examples/33-basic/QLT-4.in
/usr/share/doc/eqp/examples/33-basic/QLT-5.in
/usr/share/doc/eqp/examples/33-basic/QLT-6.in
/usr/share/doc/eqp/examples/33-basic/RBA-2.in
/usr/share/doc/eqp/examples/README
/usr/share/doc/eqp/examples/ortholattice
/usr/share/doc/eqp/examples/ortholattice/e2.in
/usr/share/doc/eqp/examples/ortholattice/e3.in
/usr/share/doc/eqp/examples/ring
/usr/share/doc/eqp/examples/ring/x2.in
/usr/share/doc/eqp/examples/ring/x3.in
/usr/share/doc/eqp/examples/robbins
/usr/share/doc/eqp/examples/robbins/eqp-lemma0.in
/usr/share/doc/eqp/examples/robbins/eqp-lemma1.in
/usr/share/doc/eqp/examples/robbins/eqp-lemma2.in
/usr/share/doc/eqp/examples/robbins/eqp-lemma3.in
/usr/share/licenses/eqp
/usr/share/licenses/eqp/LICENSE

References

Summary

In this tutorial we learn how to install eqp on Fedora 34 using yum and dnf.