HOL Theorem Prover Application icon

HOL Theorem Prover Production

1.4 MB / 0+ Downloads / Rating 5.0 - 1 reviews


See previous versions

HOL Theorem Prover, developed and published by AppsInProgress, has released its latest version, Production, on 2018-04-23. This app falls under the Education category on the Google Play Store and has achieved over 10 installs. It currently holds an overall rating of 5.0, based on 1 reviews.

HOL Theorem Prover APK available on this page is compatible with all Android devices that meet the required specifications (Android 5.0+). It can also be installed on PC and Mac using an Android emulator such as Bluestacks, LDPlayer, and others.

Read More

App Screenshot

App Screenshot

App Details

Package name: com.appsinprogress.hol_theorem_prover

Updated: 7 years ago

Developer Name: AppsInProgress

Category: Education

New features: Show more

Installation Instructions

This article outlines two straightforward methods for installing HOL Theorem Prover on PC Windows and Mac.

Using BlueStacks

  1. Download the APK/XAPK file from this page.
  2. Install BlueStacks by visiting http://bluestacks.com.
  3. Open the APK/XAPK file by double-clicking it. This action will launch BlueStacks and begin the application's installation. If the APK file does not automatically open with BlueStacks, right-click on it and select 'Open with...', then navigate to BlueStacks. Alternatively, you can drag-and-drop the APK file onto the BlueStacks home screen.
  4. Wait a few seconds for the installation to complete. Once done, the installed app will appear on the BlueStacks home screen. Click its icon to start using the application.

Using LDPlayer

  1. Download and install LDPlayer from https://www.ldplayer.net.
  2. Drag the APK/XAPK file directly into LDPlayer.

If you have any questions, please don't hesitate to contact us.

App Rating

5.0
Total 1 reviews

Previous Versions

HOL Theorem Prover Production
2018-04-23 / 1.4 MB / Android 5.0+

About this app

This application is a proof assistant for higher-order logic. The prover kernel is based on HOL Light. The goal of this app is to enable the user a simple usage of an interactive theorem prover. The user interface is simple and self explaining to enable an efficient usage of the system.


In the application there are two important parts which will be explained in the following lines:

Prover: is the main part of the application. Here you are able to obtain your theorems. First you have to build some terms in the "Term Builder". With this terms and the the 10 inference rules of HOL Light you are able to play around with the app.

Term Builder: is the part where you can build your terms. The constructed terms are needed to start a proof. You have to be careful how to construct terms. The only way to build terms is with lambda calculus. For example if you want to build "x = x" then you have to input this: Comb(Comb(=,x),x). However after building terms, they will be displayed in a more convenient style.


All provided rules for constructing proofs are explained below:

REFL: says that equality is reflexive. For this rule no preconditions are needed. The only argument is a term

TRANS: says that equality is transitive. For this rule two theorems have to be provided. The output of this rule is a theorem with transitivity applied.

MK_COMB says that equal functions applied to equal arguments give equal results. This rule takes two theorems as input. One says that two functions (f,g) are equal, the other says that two arguments (x,y) are equal. A \theorem is returned where the functions f(x) and g(y) are equal.

ABS: It is required that x is not a free variable in any of the assumptions. If two expressions involving x are equal, then the functions that take x to those values are equal.

BETA: This rule implements a simple version of beta reduction.

ASSUME: says that from any p we can deduce p. This rule takes a term p of type boolean as an input.

EQ_MP: connects equality with deduction, saying that if \p and q are equal and it is possible to deduce p, then q can be deduced as well. This rule takes two theorems as an input and outputs a theorem with q as the conclusion.

DEDUCT_ANTISYM_RULE: connects equality and deduction, saying that if q can be deduced by p and vice versa, q and p are equal.

INST: expresses that if p is true for variables x1,...,xn then those variable can be replaced by any terms of the same types.

INST_TYPE: works like INST but type variables will be substituted.

New features

Bugfix