From 8b0209760b6d8c5be34a01fadab4b273686b1d51 Mon Sep 17 00:00:00 2001 From: ghost <230292698+ghost-issue@users.noreply.github.com> Date: Thu, 30 Jul 2026 11:51:22 +0800 Subject: [PATCH] fix TPTP Syntax example --- docusaurus-site/docs/lectures/L1.mdx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docusaurus-site/docs/lectures/L1.mdx b/docusaurus-site/docs/lectures/L1.mdx index e3df2b8..3cb8f00 100644 --- a/docusaurus-site/docs/lectures/L1.mdx +++ b/docusaurus-site/docs/lectures/L1.mdx @@ -44,20 +44,20 @@ in a group “assuming that $x^2=1$ for all $x$, p ```tptp %---- 1 * x = x -fof(left identity,axiom, +fof(left_identity,axiom, ! [X] : mult(e,X) = X). %---- i(x) * x = 1 -fof(left inverse,axiom, +fof(left_inverse,axiom, ! [X] : mult(inverse(X),X) = e). %---- (x * y) * z = x * (y * z) fof(associativity,axiom, ! [X,Y,Z] : mult(mult(X,Y),Z) = mult(X,mult(Y,Z))). %---- x * x = 1 -fof(group of order 2,hypothesis, +fof(group_of_order_2,hypothesis, ! [X] : mult(X,X) = e). %---- prove x * y = y * x fof(commutativity,conjecture, -! [X] : mult(X,Y) = mult(Y,X)). +! [X, Y] : mult(X,Y) = mult(Y,X)). ``` ## First-Order Logic and TPTP