Tree @master (Download .tar.gz)
- ..
 - incorrect
 - absorption-laws.eqthy.md
 - boolean-algebra.eqthy.md
 - combinatory-logic.eqthy.md
 - group-inverse.eqthy.md
 - group-theory.eqthy.md
 - interior-algebra.eqthy.md
 - monoid-id-comm.eqthy.md
 - propositional-algebra.eqthy.md
 - rule-congruence.eqthy.md
 - rule-of-constancy.eqthy.md
 - rule-substitution.eqthy.md
 - rule-variable-renaming.eqthy.md
 - semigroup-idempotence.eqthy.md
 - semigroup-right-inverse-is-left.eqthy.md
 - set-difference.eqthy.md
 - socks-and-shoes.eqthy.md
 
rule-substitution.eqthy.md @master — view markup · raw · history · blame
Rule: Substitution
Demonstration of the use of the Substitution rule in a proof.
(This is not something the eqthy checker searches for,
so it does have to be given explicitly in the justification.)
axiom (idright) mul(A, e) = A
axiom (idleft)  mul(e, A) = A
axiom (assoc)   mul(A, mul(B, C)) = mul(mul(A, B), C)
theorem
    mul(mul(e, B), e) = mul(e, B)
proof
    A = A
    mul(A, e) = A
    mul(mul(e, B), e) = mul(e, B)   [by substitution of mul(e, B) into A]
qed