コード例 #1
0
ファイル: theorem_maker.py プロジェクト: funnypig/math4fun
def build_TL(F):
    """
        Make L theorem with F

    :param F: Variable or Node
    :return: list of formal conclusions to get F->F
    """

    ff = Node(F, F)
    # A2 for F, F->F, F
    F1 = axiom.A2(F, ff, F)

    # A1 for F, F->F
    F2 = axiom.A1(F, ff)

    # MP for F1 and F2
    F3 = axiom.MP(F2, F1)

    # A1 for F and F
    F4 = axiom.A1(F, F)

    # MP for F3, F4
    F5 = axiom.MP(F3, F4)

    return [F1, F2, F3, F4, F5]
コード例 #2
0
ファイル: theorem_maker.py プロジェクト: funnypig/math4fun
def build_deduction(hypoth, F, G, proof=[]):
    """
        hypoth, F |- G => hypoth |- F->G

        proof = [F1, ..., Fn-1] + [G]
        F = Fn
    """

    if len(proof) == 0 or proof[-1] != G:
        proof.append(G)

    res = []

    P_index = -1

    for p in proof:
        P_index += 1

        if p == F:
            res.extend(build_TL(F))

        elif axiom.if_Axiom(p) or p in hypoth:

            # A1 for F, G
            F1 = axiom.A1(p, F)
            # MP for F and F1
            F2 = axiom.MP(p, F1)

            res.extend([F1, F2])

        else:
            # smth weird happens here
            _str = p.msg

            if not _str.startswith("MP for"):
                continue

            _str = _str.replace("MP for", "")

            sFr, sFs = _str.split(',')
            Fr = formula.buildFormula(formula.prepareString(sFr))
            Fs = formula.buildFormula(formula.prepareString(sFs))

            # A2 for G, Fr, F
            F1 = axiom.A2(F, Fr, p)

            # MP for F1, G->Fs
            F2 = axiom.MP(Node(F, Fs), F1)

            # MP for G->Fr, F2
            F3 = axiom.MP(Node(F, Fr), F2)

            res.extend([F1, F2, F3])

    return res
コード例 #3
0
ファイル: theorem_maker.py プロジェクト: funnypig/math4fun
def build_T3(F, G):
    # !f -> (f->G)
    nG = notFormula(G)

    F1 = notFormula(F)
    F2 = F

    F3 = axiom.A1(F2, nG)
    F4 = MP(F2, F3)

    F5 = axiom.A1(F1, nG)
    F6 = MP(F1, F5)
    F7 = axiom.A3(F, G)
    F8 = MP(F6, F7)
    F9 = MP(F4, F8)

    proof = [F1, F2, F3, F4, F5, F6, F7, F8, F9]

    ded1 = build_deduction([F1], F, G, proof)
    proof = ded1
    ded2 = build_deduction([], F1, ded1[-1], proof)
    proof = ded2

    return proof
コード例 #4
0
ファイル: theorem_maker.py プロジェクト: funnypig/math4fun
def build_T4(F, G):
    # (!G->!F)->(F->G)

    nF = notFormula(F)
    nG = notFormula(G)

    F1 = Node(nG, nF)
    F2 = F

    F3 = axiom.A3(F, G)
    F4 = MP(F1, F3)
    F5 = axiom.A1(F, nG)

    f6 = syl_1(F5, F4)

    proof = [F3, F4, F5]
    proof.extend(f6)

    proof = build_deduction([F1, F], F1, f6[-1], proof)

    return proof
コード例 #5
0
ファイル: theorem_maker.py プロジェクト: funnypig/math4fun
def build_T2(F):
    nF = notFormula(F)  # !F
    nnF = notFormula(nF)  # !!F
    nnnF = notFormula(nnF)  # !!!F

    F1 = axiom.A3(F, nnF)  # (!!!F->!F)->((!!F->F)->!!F)

    f2 = build_T1(nF)  # build th. 1
    F2 = f2[-1]  # !!!A->!A

    F3 = MP(F2, F1)  # ...->!!A
    F4 = axiom.A1(F, nnnF)  # A->...

    f5 = syl_1(F4, F3)  # f5[-1] = A->!!A

    res = [F1]
    res.extend(f2)
    res.extend([F3, F4])
    res.extend(f5)

    return res
コード例 #6
0
ファイル: theorem_maker.py プロジェクト: funnypig/math4fun
def build_T5(F, G):
    """
        (F->G)->(!G->!F)
    """

    nF = notFormula(F)
    nG = notFormula(G)

    nnF = notFormula(nF)
    nnG = notFormula(nG)

    F1 = Node(F, G)

    f2 = build_T2(G)
    F2 = f2[-1]

    F3 = axiom.A3(nG, nF)

    f4 = syl_1(F1, F2)  # f->!!g
    F4 = f4[-1]

    f5 = build_T1(F)
    F5 = f5[-1]

    f6 = syl_1(F5, F4)  # !!f->!!g
    F6 = f6[-1]

    F7 = MP(F6, F3)  # (!!f->!g)->!f

    F8 = axiom.A1(nG, nnF)

    f9 = syl_1(F8, F7)
    F9 = f9[-1]

    proof = f2 + [F3] + f4 + f5 + f6 + [F7, F8] + f9

    proof = build_deduction([F1, nG], F1, F9, proof)

    return proof
コード例 #7
0
ファイル: theorem_maker.py プロジェクト: funnypig/math4fun
def build_T1(F):
    nF = notFormula(F)

    F1 = axiom.A3(nF, F)

    f2 = build_TL(nF)
    F2 = f2[-1]

    f3 = syl_2(F1, F2)
    F3 = f3[-1]

    nnF = notFormula(nF)
    F4 = axiom.A1(nnF, nF)

    f5 = syl_1(F4, F3)
    F5 = f5[-1]

    res = [F1]
    res.extend(f2)
    res.extend(f3)
    res.extend([F4])
    res.extend(f5)

    return res
コード例 #8
0
ファイル: theorem_maker.py プロジェクト: funnypig/math4fun
def Calmar_Theorem(F, values):
    '''
        Calmar's Theorem implementation

    :param F: Propositional calculus formula: Variable or Node
    :return:
    '''

    if type(F) == Variable:
        v = Variable(F.symbol, _not=True if values[F.symbol] == 1 else 0)

        return [v]

    if F._not:  # F = !G
        G = Node(None, None)
        G.left = F.left  # Copy G, but F = !G
        G.right = F.right

        if F.calculate(values) == 1:
            G.msg = "Calmar's theorem, 1.a) F^(alpha) = G^(alpha) => hypoth |- G^() = F^()"

            return [G]

        else:
            # !f = !!g
            t2 = build_T2(G)
            T2 = t2[-1]

            nng = MP(G, T2)

            res = t2
            res.append(nng)
            return res

    else:  # F = G->H

        res = []

        G = F.left
        H = F.right

        if G.calculate(values) == 0:

            nG = notFormula(G)
            t3 = build_T3(G, H)

            T = t3[-1]
            mp = MP(nG, T)

            res = t3
            res.append(mp)

        elif H.calculate(values) == 1:

            # h->(g->h)
            h = H
            hgh = axiom.A1(H, G)

            gh = MP(h, hgh)

            return [hgh, gh]

        else:
            # F = !(G->H)
            # have G, !H. proof !(G->H)

            nH = notFormula(H)

            t6 = build_T6(G, H)
            T6 = t6[-1]

            f1 = MP(G, T6)
            f2 = MP(nH, f1)

            res = t6
            res.extend([f1, f2])

        return res