Skip to main content

a python port of formal mathematics proof verifier.

Project description

formalmath

A formal mathematics package.

setmm

A port for metamath and set.mm. The language metamath is a math proof verifying language. And, set.mm is its main database of theorems, based on the classical ZFC axiom system.

MObject is the basic class. Any MObject have a label. Some of them have short_code or metamath_code.

Constant is the class of constants, corresponding to $c statements in metamath.

The port of other concepts in metamath and set.mm

Example code:

from formalmath import setmm
test1 = MObject("x1")
test2 = MObject("y1")
# test3 = MObject("x1")
print(test1) # output: MObject("x1")
test3 = MObject.find_MObject_by_label("y1")
print(test3) # output: MObject("y1")

lp = Constant("\\left(")
rp = Constant("\\right)")
# lp2 = Constant("\\left(")
print(lp) # output: Constant("\left(")
testConst = Constant.find_MObject_by_label("\\right)")
print(testConst) # output: Constant("\right)")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

formalmath-0.0.2.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

formalmath-0.0.2-py3-none-any.whl (3.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page