test(tests/lean/run/cc_ac5): mix two AC symbols
This commit is contained in:
parent
a500059672
commit
ec1c689073
1 changed files with 10 additions and 0 deletions
10
tests/lean/run/cc_ac5.lean
Normal file
10
tests/lean/run/cc_ac5.lean
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
universe variables u
|
||||
variables {α : Type u}
|
||||
variables [comm_ring α]
|
||||
open tactic
|
||||
|
||||
example (x1 x2 x3 x4 x5 x6 : α) : x1*x4 = x1 → x3*x6 = x5*x5 → x5 = x4 → x6 = x2 → x1 = x1*(x6*x3) :=
|
||||
by cc
|
||||
|
||||
example (y1 y2 x2 x3 x4 x5 x6 : α) : (y1 + y2)*x4 = (y2 + y1) → x3*x6 = x5*x5 → x5 = x4 → x6 = x2 → (y2 + y1) = (y1 + y2)*(x6*x3) :=
|
||||
by cc
|
||||
Loading…
Add table
Reference in a new issue