lean2/tests/lean/run/perm_with_pi_args.lean

6 lines
254 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import data.matrix data.real data.fin
open matrix real
axiom mx_add_comm {m n} (M₁ M₂ : matrix m n) : M₁ + M₂ = M₂ + M₁
attribute mx_add_comm [simp]
example (m n : ) (M₁ M₂ : matrix m n) : M₁ + M₂ = M₂ + M₁ := by simp