Datasets:
Tasks:
Text Generation
Modalities:
Text
Sub-tasks:
language-modeling
Languages:
English
Size:
100K - 1M
License:
File size: 717 Bytes
4365a98 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
\DOC AP_THM
\TYPE {AP_THM : thm -> term -> thm}
\SYNOPSIS
Proves equality of equal functions applied to a term.
\KEYWORDS
rule.
\DESCRIBE
When applied to a theorem {A |- f = g} and a term {x}, the inference
rule {AP_THM} returns the theorem {A |- f x = g x}.
{
A |- f = g
---------------- AP_THM (A |- f = g) `x`
A |- f x = g x
}
\FAILURE
Fails unless the conclusion of the theorem is an equation, both sides
of which are functions whose domain type is the same as that of the
supplied term.
\EXAMPLE
{
# REWRITE_RULE[GSYM FUN_EQ_THM] ADD1;;
val it : thm = |- SUC = (\m. m + 1)
# AP_THM it `11`;;
val it : thm = |- SUC 11 = (\m. m + 1) 11
}
\SEEALSO
AP_TERM, ETA_CONV, MK_COMB.
\ENDDOC
|