src/HOL/Fun.thy
author wenzelm
Sun, 15 Oct 2000 19:50:35 +0200
changeset 10220 2a726de6e124
parent 10212 33fe2d701ddd
child 10826 f3b7201dda27
permissions -rw-r--r--
proper symbol markup with \isamath, \isatext; support sub/super scripts:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 923
diff changeset
     1
(*  Title:      HOL/Fun.thy
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     2
    ID:         $Id$
1475
7f5a4cd08209 expanded tabs; renamed subtype to typedef;
clasohm
parents: 923
diff changeset
     3
    Author:     Tobias Nipkow, Cambridge University Computer Laboratory
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     4
    Copyright   1994  University of Cambridge
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     5
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
     6
Notions about functions.
923
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     7
*)
ff1574a81019 new version of HOL with curried function application
clasohm
parents:
diff changeset
     8
10212
33fe2d701ddd *** empty log message ***
nipkow
parents: 9352
diff changeset
     9
Fun = Inverse_Image + equalities + 
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    10
4059
59c1422c9da5 New Blast_tac (and minor tidying...)
paulson
parents: 2912
diff changeset
    11
instance set :: (term) order
59c1422c9da5 New Blast_tac (and minor tidying...)
paulson
parents: 2912
diff changeset
    12
                       (subset_refl,subset_trans,subset_antisym,psubset_eq)
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    13
consts
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    14
  fun_upd  :: "('a => 'b) => 'a => 'b => ('a => 'b)"
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    15
9141
wenzelm
parents: 8960
diff changeset
    16
nonterminals
wenzelm
parents: 8960
diff changeset
    17
  updbinds updbind
5305
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    18
syntax
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    19
  "_updbind"       :: ['a, 'a] => updbind             ("(2_ :=/ _)")
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    20
  ""               :: updbind => updbinds             ("_")
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    21
  "_updbinds"      :: [updbind, updbinds] => updbinds ("_,/ _")
8258
666d3a4f3b9d changed precedence of function update
oheimb
parents: 7374
diff changeset
    22
  "_Update"        :: ['a, updbinds] => 'a            ("_/'((_)')" [1000,0] 900)
5305
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    23
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    24
translations
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    25
  "_Update f (_updbinds b bs)"  == "_Update (_Update f b) bs"
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    26
  "f(x:=y)"                     == "fun_upd f x y"
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    27
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    28
defs
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    29
  fun_upd_def "f(a:=b) == % x. if x=a then b else f x"
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    30
9340
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    31
(* Hint: to define the sum of two functions (or maps), use sum_case.
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    32
         A nice infix syntax could be defined (in Datatype.thy or below) by
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    33
consts
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    34
  fun_sum :: "('a => 'c) => ('b => 'c) => (('a+'b) => 'c)" (infixr "'(+')"80)
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    35
translations
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    36
 "fun_sum" == "sum_case"
9666f78ecfab added hint on fun_sum
oheimb
parents: 9309
diff changeset
    37
*)
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    38
  
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    39
constdefs
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    40
  id ::  'a => 'a
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    41
    "id == %x. x"
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    42
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    43
  o  :: ['b => 'c, 'a => 'b, 'a] => 'c   (infixl 55)
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    44
    "f o g == %x. f(g(x))"
7374
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    45
  
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    46
  inv :: ('a => 'b) => ('b => 'a)
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    47
    "inv(f::'a=>'b) == % y. @x. f(x)=y"
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    48
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    49
  inj_on :: ['a => 'b, 'a set] => bool
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    50
    "inj_on f A == ! x:A. ! y:A. f(x)=f(y) --> x=y"
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    51
9352
416b2ecd97a1 syntax (symbols) "op o" moved from HOL to Fun;
wenzelm
parents: 9340
diff changeset
    52
syntax (symbols)
416b2ecd97a1 syntax (symbols) "op o" moved from HOL to Fun;
wenzelm
parents: 9340
diff changeset
    53
  "op o"        :: "['b => 'c, 'a => 'b, 'a] => 'c"      (infixl "\\<circ>" 55)
416b2ecd97a1 syntax (symbols) "op o" moved from HOL to Fun;
wenzelm
parents: 9340
diff changeset
    54
6171
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    55
syntax
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    56
  inj   :: ('a => 'b) => bool                   (*injective*)
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    57
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    58
translations
cd237a10cbf8 inj is now a translation of inj_on
paulson
parents: 5852
diff changeset
    59
  "inj f" == "inj_on f UNIV"
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    60
7374
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    61
constdefs
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    62
  surj :: ('a => 'b) => bool                   (*surjective*)
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    63
    "surj f == ! y. ? x. y=f(x)"
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    64
  
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    65
  bij :: ('a => 'b) => bool                    (*bijective*)
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    66
    "bij f == inj f & surj f"
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    67
  
dec7b838f5cb the bij predicate (at last)
paulson
parents: 6171
diff changeset
    68
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    69
(*The Pi-operator, by Florian Kammueller*)
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    70
  
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    71
constdefs
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    72
  Pi      :: "['a set, 'a => 'b set] => ('a => 'b) set"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    73
    "Pi A B == {f. ! x. if x:A then f(x) : B(x) else f(x) = (@ y. True)}"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    74
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    75
  restrict :: "['a => 'b, 'a set] => ('a => 'b)"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    76
    "restrict f A == (%x. if x : A then f x else (@ y. True))"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    77
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    78
syntax
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    79
  "@Pi"  :: "[idt, 'a set, 'b set] => ('a => 'b) set"  ("(3PI _:_./ _)" 10)
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    80
  funcset :: "['a set, 'b set] => ('a => 'b) set"      (infixr 60) 
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    81
  "@lam" :: "[pttrn, 'a set, 'a => 'b] => ('a => 'b)"  ("(3lam _:_./ _)" 10)
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    82
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    83
  (*Giving funcset the nice arrow syntax -> clashes with existing theories*)
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    84
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    85
translations
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    86
  "PI x:A. B" => "Pi A (%x. B)"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    87
  "A funcset B"    => "Pi A (_K B)"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    88
  "lam x:A. f"  == "restrict (%x. f) A"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    89
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    90
constdefs
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    91
  Applyall :: "[('a => 'b) set, 'a]=> 'b set"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    92
    "Applyall F a == (%f. f a) `` F"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    93
9309
4078d5e8b293 fixed compose decl;
wenzelm
parents: 9141
diff changeset
    94
  compose :: "['a set, 'b => 'c, 'a => 'b] => ('a => 'c)"
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    95
    "compose A g f == lam x : A. g(f x)"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    96
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    97
  Inv    :: "['a set, 'a => 'b] => ('b => 'a)"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    98
    "Inv A f == (% x. (@ y. y : A & f y = x))"
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
    99
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
   100
  
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
   101
end
5852
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
   102
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
   103
ML
4d7320490be4 the function space operator
paulson
parents: 5608
diff changeset
   104
val print_translation = [("Pi", dependent_tr' ("@Pi", "op funcset"))];