src/HOL/Fun.thy
author oheimb
Wed, 12 Aug 1998 16:23:25 +0200
changeset 5305 513925de8962
parent 4830 bd73675adbed
child 5608 a82a038a3e7a
permissions -rw-r--r--
cleanup for Fun.thy: merged Update.{thy|ML} into Fun.{thy|ML} moved o_def from HOL.thy to Fun.thy added Id_def to Fun.thy moved image_compose from Set.ML to Fun.ML moved o_apply and o_assoc from simpdata.ML to Fun.ML moved fun_upd_same and fun_upd_other (from Map.ML) to Fun.ML added fun_upd_twist to Fun.ML
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
4648
f04da668581c New theory of the inverse image of a function
paulson
parents: 4059
diff changeset
     9
Fun = Vimage +
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)
2912
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    13
consts
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    14
5305
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    15
  Id          ::  'a => 'a
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    16
  o           :: ['b => 'c, 'a => 'b, 'a] => 'c   (infixl 55)
4830
bd73675adbed Added a few lemmas.
nipkow
parents: 4648
diff changeset
    17
  inj, surj   :: ('a => 'b) => bool                   (*inj/surjective*)
bd73675adbed Added a few lemmas.
nipkow
parents: 4648
diff changeset
    18
  inj_on      :: ['a => 'b, 'a set] => bool
bd73675adbed Added a few lemmas.
nipkow
parents: 4648
diff changeset
    19
  inv         :: ('a => 'b) => ('b => 'a)
5305
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    20
  fun_upd  :: "('a => 'b) => 'a => 'b => ('a => 'b)"
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    21
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    22
nonterminals
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    23
  updbinds  updbind
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    24
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    25
syntax
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    26
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    27
  (* Let expressions *)
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    28
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    29
  "_updbind"       :: ['a, 'a] => updbind             ("(2_ :=/ _)")
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    30
  ""               :: updbind => updbinds             ("_")
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    31
  "_updbinds"      :: [updbind, updbinds] => updbinds ("_,/ _")
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    32
  "_Update"        :: ['a, updbinds] => 'a            ("_/'((_)')" [900,0] 900)
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    33
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    34
translations
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    35
  "_Update f (_updbinds b bs)"  == "_Update (_Update f b) bs"
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    36
  "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
    37
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    38
defs
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    39
5305
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    40
  Id_def	"Id             == %x. x"
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    41
  o_def   	"f o g          == %x. f(g(x))"
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    42
  inj_def	"inj f          == ! x y. f(x)=f(y) --> x=y"
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    43
  inj_on_def	"inj_on f A     == ! x:A. ! y:A. f(x)=f(y) --> x=y"
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    44
  surj_def	"surj f         == ! y. ? x. y=f(x)"
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    45
  inv_def	"inv(f::'a=>'b) == % y. @x. f(x)=y"
513925de8962 cleanup for Fun.thy:
oheimb
parents: 4830
diff changeset
    46
  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
    47
3fac3e8d5d3e moved inj and surj from Set to Fun and Inv -> inv.
nipkow
parents: 1475
diff changeset
    48
end