Game Info

Axolotl is an educational game designed for self study and training of logic and formal reasoning. The app includes a library of over 60 problems using three different logic calculi and a short tutorial to get started. Additionally, completed problems can be viewed through the included proof viewer and saved to your gallery as a jpeg image. If you would rather compile to a Latex file, the completed proof may be copied to clip board as a latex file. To learn more about the creators of the app and the supporting institutions please see the About page within the app. If you would like to support us, visit our patreon page:
patreon.com/AXolotlLogicSoftware

Additional problems may be loaded into the app using a simple text based file input language (AXolotl files). Note that only the following unicode symbols are allowed within
AXolotl files ⇒, ⇔, ¬, ∧, ∨,⊤,⊥, ⊢, □, ◦, ε. The symbols ⊢ and ε may only be used for Entailment and the empty list. Furthermore ⊢ will always take two arguments which are lists and constructed using cons and ε. To make this clear we provide multiple example files below:


Function: ◦ 2 infix
Function: a 0
Function: b 0
Function: c 0
Variable: x
Variable: y
Variable: z
Problem: 1 ◦(c,◦(b,a))
Rule: 1 ◦(z,◦(x,y)) ◦(z,◦(y,x)) [C:r]
Rule: 1 ◦(◦(x,y),z) ◦(◦(y,x),z) [C:l]
Rule: 1 ◦(◦(x,y),z) ◦(x,◦(y,z)) [A:r]
Rule: 1 ◦(x,◦(y,z)) ◦(◦(x,y),z) [A:l]
Rule: 0 ◦(a,◦(b,c)) [Goal]


Function: ⇔ 2 infix
Function: ⇒ 2 infix
Function: ∨ 2 infix
Function: p 0
Function: q 0
Variable: x
Variable: y
Variable: z
Variable: w
Problem: 1 ⊢(ε,⇔(∨(p,q),∨(q,p)))
Rule: 2 ⊢(w,cons(⇒(x,y),z)) ⊢(w,cons(⇒(y,x),z)) ⊢(w,cons(⇔(x,y),z)) [⇔:r]
Rule: 1 ⊢(cons(⇒(x,y),cons(⇒(y,x),z)),w) ⊢(cons(⇔(x,y),z),w) [⇔:l]
Rule: 1 ⊢(cons(x,w),cons(y,z)) ⊢(w,cons(⇒(x,y),z)) [⇒:r]
Rule: 2 ⊢(z,cons(x,w)) ⊢(cons(y,z),w) ⊢(cons(⇒(x,y),z),w) [⇒:l]
Rule: 1 ⊢(w,cons(x,cons(y,z))) ⊢(w,cons(∨(x,y),z)) [∨:r]
Rule: 2 ⊢(cons(x,z),w) ⊢(cons(y,z),w) ⊢(cons(∨(x,y),z),w) [∨:l]
Rule: 1 ⊢(w,cons(cons(y,z),x)) ⊢(w,cons(x,cons(y,z))) [shift:r]
Rule: 1 ⊢(cons(cons(y,z),x),w) ⊢(cons(x,cons(y,z)),w) [shift:l]
Rule: 0 ⊢(cons(x,y),cons(x,z)) [AX]


Function: ⇒ 2 infix
Function: ∧ 2 infix
Function: ¬ 1
Function: p 0
Function: q 0
Variable: x
Variable: y
Variable: z
Variable: w
Problem: 1 ⊢(¬(⇒(p,¬(q))),∧(p,q))
Rule: 1 ⊢(cons(x,w),cons(y,z)) ⊢(w,cons(⇒(x,y),z)) [⇒:r]
Rule: 2 ⊢(z,cons(x,w)) ⊢(cons(y,z),w) ⊢(cons(⇒(x,y),z),w) [⇒:l]
Rule: 1 ⊢(cons(x,w),z) ⊢(w,cons(¬(x),z)) [¬:r]
Rule: 1 ⊢(w,cons(x,z)) ⊢(cons(¬(x),w),z) [¬:l]
Rule: 2 ⊢(w,cons(x,z)) ⊢(w,cons(y,z)) ⊢(w,cons(∧(x,y),z)) [∧:r]
Rule: 1 ⊢(cons(x,cons(y,z)),w) ⊢(cons(∧(x,y),z),w) [∧:l]
Rule: 1 ⊢(w,cons(cons(y,z),x)) ⊢(w,cons(x,cons(y,z))) [shift:r]
Rule: 1 ⊢(cons(cons(y,z),x),w) ⊢(cons(x,cons(y,z)),w) [shift:l]
Rule: 0 ⊢(cons(x,y),cons(x,z)) [AX]


Function: ⇒ 2 infix
Function: ∨ 2 infix
Function: ¬ 1
Function: p 0
Function: q 0
Function: ⊥ 0
Variable: x
Variable: y
Variable: z
Variable: w
Problem: 1 ⊢(∨(p,q),⇒(¬(p),q))
Rule: 1 ⊢(cons(x,z),y) ⊢(z,⇒(x,y)) [⇒:I]
Rule: 2 ⊢(w,y) ⊢(w,⇒(y,x)) ⊢(w,x) [⇒:E]
Rule: 1 ⊢(z,x) ⊢(z,∨(x,y)) [∨:I1]
Rule: 1 ⊢(z,y) ⊢(z,∨(x,y)) [∨:I2]
Rule: 3 ⊢(cons(x,z),w) ⊢(cons(y,z),w) ⊢(z,∨(x,y)) ⊢(z,w) [∨:E]
Rule: 2 ⊢(w,y) ⊢(w,⇒(y,x)) ⊢(w,x) [⇒:E]
Rule: 1 ⊢(z,⊥) ⊢(z,x) [⊥:E]
Rule: 1 ⊢(cons(¬(x),z),⊥) ⊢(z,x) [Contra]
Rule: 0 ⊢(cons(x,y),cons(x,z)) [AX]
Rule: 1 ⊢(z,⇒(x,⊥)) ⊢(z,¬(x)) [¬:def1]
Rule: 1 ⊢(z,¬(x)) ⊢(z,⇒(x,⊥)) [¬:def2]
Rule: 1 ⊢(cons(cons(y,z),x),w) ⊢(cons(x,cons(y,z)),w) [shift:l]


Function: ∧ 2 infix
Function: ⇒ 2 infix
Function: □ 1
Function: p 0
Function: q 0
Function: ⊤ 0
Variable: x
Variable: y
Variable: z
Variable: w
Problem: 1 ⊢(ε,⇒(∧(□(p),□(q)),□(∧(p,q))))
Rule: 1 ⊢(y,x) ⊢(□(y),□(x)) [□:r1]
Rule: 1 ⊢(cons(y,z),x) ⊢(cons(□(y),□(z)),□(x)) [□:r2]
Rule: 1 ⊢(cons(x,z),y) ⊢(z,⇒(x,y)) [⇒:r]
Rule: 2 ⊢(z,x) ⊢(z,y) ⊢(z,∧(x,y)) [∧:r]
Rule: 1 ⊢(cons(x,y),z) ⊢(∧(x,y),z) [∧:l]
Rule: 1 ⊢(cons(cons(y,z),x),w) ⊢(cons(x,cons(y,z)),w) [shift:l]
Rule: 0 ⊢(cons(x,y),cons(x,z)) [AX]

How to Download and Play AXolotl on PC

  • 1
    Download and install LDPlayer X on your PC.
  • 2
    Enter and search for AXolotl in the search bar at the top left corner.
  • 3
    Click on "Install" to download AXolotl automatically.
  • 4
    Once the installation is completed, click on "Open".
  • 5
    The game will be launched in LDPlayer automatically. Enjoy!
  • 6
    You can also click on the game icon of AXolotl in LDPlayer homepage to start playing.

Advantages of Playing AXolotl on PC with LDPlayer X

Wider Screen

The larger PC screen allows you to capture clearer visual details in AXolotl.

Customized Control

Play games with mouse, keyboard & controller with your own customized setting, guaranteeing a gaming experience for AXolotl comparable to actual PC gaming.

Multi-instance & Synchronizer

Log in to multiple game accounts or play multiple games at the same time. A great time saver for rerolling.

Higher FPS

With more realistic and smooth visual effect, and more coherent action, visual experience and the sense of immersion for AXolotl is greatly optimized.

Game Assistant

Use scripts to simplify complex task processes and complete tasks automatically. Enjoy your game with ease.

Video Record

Record highlights or operation processes in AXolotl to share with your friends.

Computer Configuration for AXolotl PC Version

Configuration
Recommended Configuration
Minimum requirement
System

System

Win10 64-bit or higher, including OpenGL 4.x

System

Win7 / Win8 / Win8.1 / Win10
CPU

CPU

8th Gen Intel Core i3-8100 4-core or higher, with VT enabled

CPU

Intel or AMD CPU Processor x86 / x86_64, with VT enabled
GPU

GPU

NVIDIA GeForce GTX1050 Ti 2GB or higher

GPU

Windows DirectX 11 / OpenGL 4.0 Graphics Driver
Memory

Memory

8GB or more

Memory

At least 2GB RAM
Storage

Storage

10GB or more available space for installation disk, 2GB or more available space for system disk

Storage

At least 1GB available memory

AXolotl - FAQ

Q: Is LDPlayer X safe for players?

LDPlayer X respects player privacy and prioritizes the protection of user personal information. Feel free to use it and indulge in the joy of gaming without worry. Using LDPlayer to play AXolotl for pc, you don't have to worry about any privacy violations.

Q: Can I play AXolotl on PC?

AXolotl is a/an Education game developed by AXolotl Logic Software. With LDPlayer X, the best gaming platform on PC, you can play AXolotl on PC with a gaming experience comparable to actual PC gaming.

Q: Why is LDPlayer X the best platform to play AXolotl on PC?

LDPlayer X, as a one-stop mobile gaming platform owned by LDPlayer, meets all your needs for playing mobile games on your PC:
The powerful built-in Android emulator lets you immerse yourself in every small detail of the game.
Additionally, it allows you to simply play numerous popular games in your browser, such as Brawl Stars and Roblox.
You can also enjoy the best top-up discount for popular games on LDShop.

LDPlayerX - Your one-stop mobile gaming platform on PC

Download now for more fun and benefits

Download

As a one-stop mobile gaming platform, LDPlayer X lets you enjoy mobile games on its powerful built-in Android emulator, LDPlayer, or in a browser through its cloud gaming technology. It also offers the best top-up discounts for many popular games. In a word, it's designed to meet all your needs for playing mobile games on your PC.

Contact Us

Business Inquiry: robert@ldplayer.net

Email Support: support@ldplayer.net

LD GAME Customer Service: ldgame@ldplayer.net(For LDPlayer account & recharge problem)

About Us

About Us

©2022 LDPLAYER.NET , ALL RIGHTS RESERVED.JUST OKAY LIMITED ,6/F MANULIFE PLACE 348 KWUN TONG ROAD KL HONGKONG