1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-07-08 18:14:21 +03:00
inform7/services/calculus-module/Figures/binding.txt

11 lines
547 B
Plaintext
Raw Normal View History

2020-08-23 18:54:14 +03:00
'new unary even': ok
'variables in << >>': valid:
'variables in << even (x) >>': valid: x free
'set P to << Forall x IN< kind = number (x) IN>: (x == y) ^ Exists z: (y == z) >>': p set to << ForAll x IN< kind=number(x) IN> : (x == y) ^ Exists z : (y == z) >>
'variables in P': valid: x bound y free z bound
'variable unused in << >>': x
'variable unused in P': a
'renumbering of << even (x) >>': << even(x) >>
'renumbering of << even (z) >>': << even(x) >>
'renumbering of << Exists z: even (z) ^ (z == y) >>': << Exists x : even(x) ^ (x == y) >>